Home
last modified time | relevance | path

Searched defs:add_lvalue_reference (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/
H A Dadd_lvalue_reference.hpp13 template <class T> struct add_lvalue_reference struct
15 typedef typename boost::add_reference<T>::type type;
19 template <class T> struct add_lvalue_reference<T&&> struct
21 typedef T& type;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/detail/
H A Dmeta_utils.hpp179 struct add_lvalue_reference struct
180 { typedef T& type; };
182 template<class T> struct add_lvalue_reference<T&> { typedef T& type; }; struct
183 template<> struct add_lvalue_reference<void> { typedef void type; }; struct
184 template<> struct add_lvalue_reference<const void> { typedef const void type; }; struct
185 template<> struct add_lvalue_reference<volatile void> { typedef volatile void type; … struct
186 template<> struct add_lvalue_reference<const volatile void>{ typedef const volatile void ty… struct