From Jason Turner

[thread.decaycopy]

Diff to HTML by rtfpessoa

tmp/tmpujpfaphh/{from.md → to.md} RENAMED
@@ -3,9 +3,9 @@
3
  In several places in this Clause the operation *DECAY_COPY(x)* is used.
4
  All such uses mean call the function `decay_copy(x)` and use the result,
5
  where `decay_copy` is defined as follows:
6
 
7
  ``` cpp
8
- template <class T> typename decay<T>::type decay_copy(T&& v)
9
  { return std::forward<T>(v); }
10
  ```
11
 
 
3
  In several places in this Clause the operation *DECAY_COPY(x)* is used.
4
  All such uses mean call the function `decay_copy(x)` and use the result,
5
  where `decay_copy` is defined as follows:
6
 
7
  ``` cpp
8
+ template <class T> decay_t<T> decay_copy(T&& v)
9
  { return std::forward<T>(v); }
10
  ```
11