2014-01-16 16:58:45 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
#ifndef TEST_TRAITS_H
|
|
|
|
#define TEST_TRAITS_H
|
|
|
|
|
|
|
|
template <class charT>
|
|
|
|
struct test_traits
|
|
|
|
{
|
|
|
|
typedef charT char_type;
|
|
|
|
};
|
|
|
|
|
2010-08-22 00:47:54 +00:00
|
|
|
#endif // TEST_TRAITS_H
|