Home
last modified time | relevance | path

Searched defs:remove_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 Dremove_reference.hpp38 template <class T> struct remove_reference{ typedef typename boost::detail::remove_rvalue_ref<T>::t… argument
39 template <class T> struct remove_reference<T&>{ typedef T type; }; argument
46 template <class T> struct remove_reference<T&const>{ typedef T type; }; struct
47 template <class T> struct remove_reference<T&volatile>{ typedef T type; }; argument
48 template <class T> struct remove_reference<T&const volatile>{ typedef T type; }; struct
/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.hpp90 struct remove_reference struct
92 typedef T type;
96 struct remove_reference<T&> struct
98 typedef T type;
104 struct remove_reference<T&&> struct
106 typedef T type;
112 struct remove_reference< rv<T> > struct
114 typedef T type;
118 struct remove_reference< rv<T> &> struct
120 typedef T type;
[all …]