brintos

brintos / llvm-project-archived public Read only

0
0
Text · 179 B · 58d1f8f Raw
11 lines · c
1#ifndef _LIBCPP_TYPE_TRAITS2#define _LIBCPP_TYPE_TRAITS3 4template <class _Tp>5struct underlying_type6{7    typedef __underlying_type(_Tp) type;8};9 10#endif  // _LIBCPP_TYPE_TRAITS11