From 1dc9e472e19acfe6dc7f41e429236e7eef7ceda1 Mon Sep 17 00:00:00 2001 From: The Android Open Source Project Date: Tue, 3 Mar 2009 19:28:35 -0800 Subject: auto import from //depot/cupcake/@135843 --- libstdc++/include/new | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 libstdc++/include/new (limited to 'libstdc++/include/new') diff --git a/libstdc++/include/new b/libstdc++/include/new new file mode 100644 index 0000000..559308b --- /dev/null +++ b/libstdc++/include/new @@ -0,0 +1,29 @@ +#ifndef __NEW__ +#define __NEW__ + +#include + +namespace std { + using ::size_t; + + struct nothrow_t {}; + extern const nothrow_t nothrow; +} + +void* operator new(std::size_t); +void* operator new[](std::size_t); +void operator delete(void*); +void operator delete[](void*); +void* operator new(std::size_t, const std::nothrow_t&); +void* operator new[](std::size_t, const std::nothrow_t&); +void operator delete(void*, const std::nothrow_t&); +void operator delete[](void*, const std::nothrow_t&); + +inline void* operator new(std::size_t, void* p) { return p; } +inline void* operator new[](std::size_t, void* p) { return p; } + +// these next two are not really required, since exceptions are off +inline void operator delete(void*, void*) { } +inline void operator delete[](void*, void*) { } + +#endif // __NEW__ -- cgit v1.1