Searched defs: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; }; struct429 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; }; argument