reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 | #ifndef _LIBCPP_TYPE_TRAITS #define _LIBCPP_TYPE_TRAITS template <class _Tp> struct underlying_type { typedef __underlying_type(_Tp) type; }; #endif // _LIBCPP_TYPE_TRAITS |