Searched defs:remove_reference (Results 1 – 2 of 2) sorted by relevance
38 template <class T> struct remove_reference{ typedef typename boost::detail::remove_rvalue_ref<T>::t… argument39 template <class T> struct remove_reference<T&>{ typedef T type; }; argument46 template <class T> struct remove_reference<T&const>{ typedef T type; }; struct47 template <class T> struct remove_reference<T&volatile>{ typedef T type; }; argument48 template <class T> struct remove_reference<T&const volatile>{ typedef T type; }; struct
90 struct remove_reference struct92 typedef T type;96 struct remove_reference<T&> struct98 typedef T type;104 struct remove_reference<T&&> struct106 typedef T type;112 struct remove_reference< rv<T> > struct114 typedef T type;118 struct remove_reference< rv<T> &> struct120 typedef T type;[all …]