Proposed resolution:
This wording is relative to N3936.
Change Table 53 — "Reference modifications" in [meta.trans.ref] as indicated:
Template | Comments |
---|---|
… | |
template <class T> struct add_lvalue_reference; |
If T names then the member typedef type shall name T&; otherwise, the member typedef type shall name T1&; otherwise, [Note: This rule reflects the semantics of reference collapsing ([dcl.ref]). — end note] |
template <class T> struct add_rvalue_reference; |
If T names then the member typedef type shall name T&&; otherwise, type shall name T. [Note: This rule reflects the semantics of reference collapsing ([dcl.ref]). For example, when a type T names a type T1&, the type add_rvalue_reference_t<T> is not an rvalue reference. — end note] |
Change Table 56 — "Pointer modifications" in [meta.trans.ptr] as indicated:
Template | Comments |
---|---|
… | |
template <class T> struct add_pointer; |
If T names a referenceable type or a (possibly cv-qualified) void type then remove_reference_t<T>*; otherwise, type shall name T. |