blob: bbcab54fd7a5a973adf9e81b82066011e11cbccc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/////////////////////////////////////////////////////////////////////////////
// Copyright (c) Electronic Arts Inc. All rights reserved.
/////////////////////////////////////////////////////////////////////////////
#include "EASTLTest.h"
#include <EABase/eabase.h>
#include <EASTL/internal/char_traits.h>
template<typename CharT>
int TestCharTraits()
{
int nErrorCount = 0;
return nErrorCount;
}
int TestCharTraits()
{
using namespace eastl;
int nErrorCount = 0;
nErrorCount += TestCharTraits<char>();
nErrorCount += TestCharTraits<wchar_t>();
nErrorCount += TestCharTraits<char16_t>();
nErrorCount += TestCharTraits<char32_t>();
return nErrorCount;
}
|