diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-04-08 16:43:58 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-04-08 16:43:58 +0200 |
commit | e59cf7b09e7388d369e8d2bf73501cde79c28708 (patch) | |
tree | 6099307032bb86f4a969721f9ac447d3d1be67d4 /test/source/TestIntrusiveSList.cpp |
Squashed 'EASTL/' content from commit fad5471
git-subtree-dir: EASTL
git-subtree-split: fad54717f8e4ebb13b20095da7efd07a53af0f10
Diffstat (limited to 'test/source/TestIntrusiveSList.cpp')
-rw-r--r-- | test/source/TestIntrusiveSList.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/test/source/TestIntrusiveSList.cpp b/test/source/TestIntrusiveSList.cpp new file mode 100644 index 0000000..0112eea --- /dev/null +++ b/test/source/TestIntrusiveSList.cpp @@ -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; +} + + + + + + + + + + + + |