Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/include/__type_traits/
H A Dmake_unsigned.h44 struct __make_unsigned {}; struct
47 struct __make_unsigned<_Tp, true>
52 template <> struct __make_unsigned<bool, true> {};
53 template <> struct __make_unsigned< signed short, true> {typedef unsigned short type;};
54 template <> struct __make_unsigned<unsigned short, true> {typedef unsigned short type;};
55 template <> struct __make_unsigned< signed int, true> {typedef unsigned int type;};
56 template <> struct __make_unsigned<unsigned int, true> {typedef unsigned int type;};
57 template <> struct __make_unsigned< signed long, true> {typedef unsigned long type;};
58 template <> struct __make_unsigned<unsigned long, true> {typedef unsigned long type;};
59 template <> struct __make_unsigned< signed long long, true> {typedef unsigned long long type;};
[all …]