This commit is contained in:
jeanlemotan
2024-07-02 18:10:39 +02:00
commit 48ab06b1d9
733 changed files with 321088 additions and 0 deletions
+39
View File
@@ -0,0 +1,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;
}