Home
last modified time | relevance | path

Searched defs:remove_cv (Results 1 – 3 of 3) 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_cv.hpp21 template <class T> struct remove_cv{ typedef T type; }; struct
22 template <class T> struct remove_cv<T const>{ typedef T type; }; argument
23 template <class T> struct remove_cv<T volatile>{ typedef T type; }; struct
24 template <class T> struct remove_cv<T const volatile>{ typedef T type; }; struct
27 template <class T, std::size_t N> struct remove_cv<T const[N]>{ typedef T type[N]; }; argument
28 template <class T, std::size_t N> struct remove_cv<T const volatile[N]>{ typedef T type[N]; }; struct
29 template <class T, std::size_t N> struct remove_cv<T volatile[N]>{ typedef T type[N]; }; struct
31 template <class T> struct remove_cv<T const[]>{ typedef T type[]; }; argument
32 template <class T> struct remove_cv<T const volatile[]>{ typedef T type[]; }; argument
33 template <class T> struct remove_cv<T volatile[]>{ typedef T type[]; }; argument
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/intrusive/detail/
H A Dhas_member_function_callable_with.hpp70 template<typename T> struct remove_cv { typedef T type; }; argument
71 template<typename T> struct remove_cv<const T> { typedef T type; }; argument
72 template<typename T> struct remove_cv<const volatile T> { typedef T type; }; struct
73 template<typename T> struct remove_cv<volatile T> { 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 Dtype_traits.hpp401 template<typename T> struct remove_cv { typedef T type; }; struct
402 template<typename T> struct remove_cv<const T> { typedef T type; }; argument
403 template<typename T> struct remove_cv<const volatile T> { typedef T type; }; argument
404 template<typename T> struct remove_cv<volatile T> { typedef T type; }; struct