blob: 0112eea95bdf8b8509a8921f8e2b8e92e2837b1f (
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
|
/////////////////////////////////////////////////////////////////////////////
// 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;
}
|