Searched defs:add_lvalue_reference (Results 1 – 2 of 2) sorted by relevance
13 template <class T> struct add_lvalue_reference struct15 typedef typename boost::add_reference<T>::type type; 19 template <class T> struct add_lvalue_reference<T&&> struct21 typedef T& type;
179 struct add_lvalue_reference struct180 { typedef T& type; };182 template<class T> struct add_lvalue_reference<T&> { typedef T& type; }; struct183 template<> struct add_lvalue_reference<void> { typedef void type; }; struct184 template<> struct add_lvalue_reference<const void> { typedef const void type; }; struct185 template<> struct add_lvalue_reference<volatile void> { typedef volatile void type; … struct186 template<> struct add_lvalue_reference<const volatile void>{ typedef const volatile void ty… struct