6e0a1f458e
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@111764 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
151 B
C++
11 lines
151 B
C++
#ifndef TEST_TRAITS_H
|
|
#define TEST_TRAITS_H
|
|
|
|
template <class charT>
|
|
struct test_traits
|
|
{
|
|
typedef charT char_type;
|
|
};
|
|
|
|
#endif // TEST_TRAITS_H
|