aboutsummaryrefslogtreecommitdiff
path: root/test/source/EASTLTestAllocator.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/source/EASTLTestAllocator.h')
-rw-r--r--test/source/EASTLTestAllocator.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/source/EASTLTestAllocator.h b/test/source/EASTLTestAllocator.h
deleted file mode 100644
index 775aff6..0000000
--- a/test/source/EASTLTestAllocator.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Copyright (c) Electronic Arts Inc. All rights reserved.
-/////////////////////////////////////////////////////////////////////////////
-
-
-#ifndef EASTLTEST_ALLOCATOR_H
-#define EASTLTEST_ALLOCATOR_H
-
-#include <EABase/eabase.h>
-#include <new>
-
- void* operator new(size_t size);
- void* operator new[](size_t size);
- void* operator new[](size_t size, const char* /*name*/, int /*flags*/, unsigned /*debugFlags*/, const char* /*file*/, int /*line*/);
- void* operator new[](size_t size, size_t alignment, size_t /*alignmentOffset*/, const char* /*name*/, int /*flags*/, unsigned /*debugFlags*/, const char* /*file*/, int /*line*/);
- void* operator new(size_t size, size_t alignment);
- void* operator new(size_t size, size_t alignment, const std::nothrow_t&) EA_THROW_SPEC_NEW_NONE();
- void* operator new[](size_t size, size_t alignment);
- void* operator new[](size_t size, size_t alignment, const std::nothrow_t&)EA_THROW_SPEC_NEW_NONE();
- void operator delete(void* p) EA_THROW_SPEC_DELETE_NONE();
- void operator delete[](void* p) EA_THROW_SPEC_DELETE_NONE();
- void EASTLTest_SetGeneralAllocator();
- bool EASTLTest_ValidateHeap();
-
-
-#endif // Header include guard