Searched refs:__libcpp_is_floating_point (Results 1 – 1 of 1) sorted by relevance
23 template <class _Tp> struct __libcpp_is_floating_point : public false_type {}; struct24 template <> struct __libcpp_is_floating_point<float> : public true_type {};25 template <> struct __libcpp_is_floating_point<double> : public true_type {};26 template <> struct __libcpp_is_floating_point<long double> : public true_type {};30 struct _LIBCPP_TEMPLATE_VIS is_floating_point : public __libcpp_is_floating_point<__remove_cv_t<_Tp…