_Type 51 MMgc/TypeTraits.h template <typename _Type>
_Type 52 MMgc/TypeTraits.h struct remove_const { typedef _Type type; };
_Type 54 MMgc/TypeTraits.h template <typename _Type>
_Type 55 MMgc/TypeTraits.h struct remove_const<_Type const> { typedef _Type type; };
_Type 57 MMgc/TypeTraits.h template <typename _Type>
_Type 58 MMgc/TypeTraits.h struct remove_volatile { typedef _Type type; };
_Type 60 MMgc/TypeTraits.h template <typename _Type>
_Type 61 MMgc/TypeTraits.h struct remove_volatile<_Type volatile> { typedef _Type type; };
_Type 63 MMgc/TypeTraits.h template <typename _Type>
_Type 69 MMgc/TypeTraits.h template <typename _Type>
_Type 72 MMgc/TypeTraits.h typedef _Type type;
_Type 76 MMgc/TypeTraits.h template <typename _Type> \
_Type 79 MMgc/TypeTraits.h typedef _Type type; \
_Type 82 MMgc/TypeTraits.h _RP_SPECIALIZE(_Type *)
_Type 83 MMgc/TypeTraits.h _RP_SPECIALIZE(_Type * const)
_Type 84 MMgc/TypeTraits.h _RP_SPECIALIZE(_Type * volatile)
_Type 85 MMgc/TypeTraits.h _RP_SPECIALIZE(_Type * const volatile)
_Type 89 MMgc/TypeTraits.h template <typename _Type, _Type _Value>
_Type 92 MMgc/TypeTraits.h static const _Type value = _Value;
_Type 93 MMgc/TypeTraits.h typedef _Type value_type;
_Type 103 MMgc/TypeTraits.h template <typename _Type>
_Type 104 MMgc/TypeTraits.h struct is_same<_Type, _Type> : public true_type { };
_Type 106 MMgc/TypeTraits.h template <typename _Type>
_Type 119 MMgc/TypeTraits.h static const bool _value = sizeof (_test<_Type>(0)) == sizeof (_one);
_Type 122 MMgc/TypeTraits.h template <typename _Type>
_Type 123 MMgc/TypeTraits.h struct _is_class_or_union : public integral_constant<bool, _is_class_or_union_helper<_Type>::_value>