Searched defs:remove_reference (Results 1 – 9 of 9) sorted by relevance
38 template <class T> struct remove_reference{ typedef typename boost::detail::remove_rvalue_ref<T>::t… struct39 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
14 struct remove_reference { struct19 struct remove_reference<T&> { argument25 struct remove_reference<T&&> { struct26 typedef T type;
100 struct remove_reference struct102 typedef T type;106 struct remove_reference<T&> struct108 typedef T type;114 struct remove_reference<T&&> struct116 typedef T type;122 struct remove_reference< rv<T> > struct124 typedef T type;128 struct remove_reference< rv<T> &> struct130 typedef T type;[all …]
92 struct remove_reference struct94 typedef T type;98 struct remove_reference<T&> struct100 typedef T type;106 struct remove_reference<T&&> struct108 typedef T type;114 struct remove_reference< rv<T> > struct116 typedef T type;120 struct remove_reference< rv<T> &> struct122 typedef T type;[all …]
33 struct remove_reference struct35 typedef T type;39 struct remove_reference<T&> struct41 typedef T type;
149 constexpr auto remove_reference = metafunction<std::remove_reference>; variable
96 using remove_reference = error_t; typedef
312 struct remove_reference : boost::remove_reference<Tp> {}; struct