Home | History | Annotate | Download | only in SemaCXX

Lines Matching defs:remove_reference

6 template <class T> struct remove_reference { typedef T type; };
7 template <class T> struct remove_reference<T&> { typedef T type; };
8 template <class T> struct remove_reference<T&&> { typedef T type; };
10 template <class T> typename remove_reference<T>::type&& move(T&& t);