Searched refs:__libcpp_is_integral (Results 1 – 2 of 2) sorted by relevance
23 template <class _Tp> struct __libcpp_is_integral { enum { value = 0 }; }; struct24 template <> struct __libcpp_is_integral<bool> { enum { value = 1 }; };25 template <> struct __libcpp_is_integral<char> { enum { value = 1 }; };26 template <> struct __libcpp_is_integral<signed char> { enum { value = 1 }; };27 template <> struct __libcpp_is_integral<unsigned char> { enum { value = 1 }; };29 template <> struct __libcpp_is_integral<wchar_t> { enum { value = 1 }; };32 template <> struct __libcpp_is_integral<char8_t> { enum { value = 1 }; };34 template <> struct __libcpp_is_integral<char16_t> { enum { value = 1 }; };35 template <> struct __libcpp_is_integral<char32_t> { enum { value = 1 }; };36 template <> struct __libcpp_is_integral<short> { enum { value = 1 }; };[all …]
35 template <class _Tp> struct __libcpp_is_integral { enum { value = 0 }; };36 template <> struct __libcpp_is_integral<bool> { enum { value = 1 }; };37 template <> struct __libcpp_is_integral<char> { enum { value = 1 }; };38 template <> struct __libcpp_is_integral<signed char> { enum { value = 1 }; };39 template <> struct __libcpp_is_integral<unsigned char> { enum { value = 1 }; };41 template <> struct __libcpp_is_integral<wchar_t> { enum { value = 1 }; };44 template <> struct __libcpp_is_integral<char8_t> { enum { value = 1 }; };46 template <> struct __libcpp_is_integral<char16_t> { enum { value = 1 }; };47 template <> struct __libcpp_is_integral<char32_t> { enum { value = 1 }; };48 template <> struct __libcpp_is_integral<short> { enum { value = 1 }; };[all …]