Searched defs:is_floating_point_cv (Results 1 – 1 of 1) sorted by relevance
602 template<class T> struct is_floating_point_cv { static const bool value = false; }; argument603 template<> struct is_floating_point_cv<float> { static const bool value = true; }; argument604 template<> struct is_floating_point_cv<double> { static const bool value = true; }; struct605 template<> struct is_floating_point_cv<long double> { static const bool value = true; }; argument