Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dis_floating_point.h23 template <class _Tp> struct __libcpp_is_floating_point : public false_type {}; struct
24 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…