Searched refs:is_floating_point_cv (Results 1 – 1 of 1) sorted by relevance
427 template<class T> struct is_floating_point_cv { static const bool value = false; }; argument428 template<> struct is_floating_point_cv<float> { static const bool value = true; }; argument429 template<> struct is_floating_point_cv<double> { static const bool value = true; }; struct430 template<> struct is_floating_point_cv<long double> { static const bool value = true; }; argument434 : is_floating_point_cv<typename remove_cv<T>::type>