type 52 MMgc/TypeTraits.h struct remove_const { typedef _Type type; }; type 55 MMgc/TypeTraits.h struct remove_const<_Type const> { typedef _Type type; }; type 58 MMgc/TypeTraits.h struct remove_volatile { typedef _Type type; }; type 61 MMgc/TypeTraits.h struct remove_volatile<_Type volatile> { typedef _Type type; }; type 66 MMgc/TypeTraits.h typedef typename remove_const<typename remove_volatile<_Type>::type>::type type; type 72 MMgc/TypeTraits.h typedef _Type type; type 79 MMgc/TypeTraits.h typedef _Type type; \ type 94 MMgc/TypeTraits.h typedef integral_constant<_Type, _Value> type;