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
+38
View File
@@ -0,0 +1,38 @@
/////////////////////////////////////////////////////////////////////////////
// Copyright (c) Electronic Arts Inc. All rights reserved.
/////////////////////////////////////////////////////////////////////////////
#include "EASTLTest.h"
#include <EASTL/bonus/intrusive_slist.h>
#include <EABase/eabase.h>
// Template instantations.
// These tell the compiler to compile all the functions for the given class.
//template class intrusive_slist<int>;
int TestIntrusiveSList()
{
int nErrorCount = 0;
// As of this writing, we don't yet have a completed intrusive_slist implementation.
// The interface is in place but the implementation hasn't been done yet.
return nErrorCount;
}