Clang Project

clang_source_code/test/Modules/Inputs/PR26014/B.h
1#ifndef _LIBCPP_TYPE_TRAITS
2#define _LIBCPP_TYPE_TRAITS
3
4template <class _Tp>
5struct underlying_type
6{
7    typedef __underlying_type(_Tp) type;
8};
9
10#endif  // _LIBCPP_TYPE_TRAITS
11