llvm-for-llvmta/tools/clang/test/Modules/Inputs/PR26014/A.h

14 lines
196 B
C
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
#ifndef _LIBCPP_TYPE_TRAITS
#define _LIBCPP_TYPE_TRAITS
template <class _Tp>
struct underlying_type
{
typedef __underlying_type(_Tp) type;
};
#endif // _LIBCPP_TYPE_TRAITS
#include "B.h"