Home | History | Annotate | Download | only in include

Lines Matching refs:_Type

87 #define DEFINE_IS_INTEGRAL_TO_TRUE_TYPE_FOR_TYPE(_Type)                 \
88 template<> struct is_integral<_Type>: public true_type { }; \
89 template<> struct is_integral<_Type const>: public true_type { }; \
90 template<> struct is_integral<_Type volatile>: public true_type { }; \
91 template<> struct is_integral<_Type const volatile>: public true_type { };
110 #define DEFINE_IS_FLOATING_POINT_TO_TRUE_TYPE_FOR_TYPE(_Type) \
111 template<> struct is_floating_point<_Type>: public true_type { }; \
112 template<> struct is_floating_point<_Type const>: public true_type { }; \
113 template<> struct is_floating_point<_Type volatile>: public true_type { }; \
114 template<> struct is_floating_point<_Type const volatile>: public true_type { };