blob: c45f56eba3a0a8accd79f7a87bb69853d6cd3168 [file] [log] [blame]
Marshall Clow354d39c2014-01-16 16:58:45 +00001//===----------------------------------------------------------------------===//
2//
Chandler Carruth57b08b02019-01-19 10:56:40 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Marshall Clow354d39c2014-01-16 16:58:45 +00006//
7//===----------------------------------------------------------------------===//
8
Howard Hinnant3e519522010-05-11 19:42:16 +00009#ifndef TEST_TRAITS_H
10#define TEST_TRAITS_H
11
12template <class charT>
13struct test_traits
14{
15 typedef charT char_type;
16};
17
Howard Hinnantbf2897c2010-08-22 00:47:54 +000018#endif // TEST_TRAITS_H