Home
last modified time | relevance | path

Searched refs:is_floating_point_cv (Results 1 – 1 of 1) sorted by relevance

/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.hpp427 template<class T> struct is_floating_point_cv { static const bool value = false; }; argument
428 template<> struct is_floating_point_cv<float> { static const bool value = true; }; argument
429 template<> struct is_floating_point_cv<double> { static const bool value = true; }; struct
430 template<> struct is_floating_point_cv<long double> { static const bool value = true; }; argument
434 : is_floating_point_cv<typename remove_cv<T>::type>