diff options
Diffstat (limited to 'gcc-4.6/libstdc++-v3/libsupc++/new')
-rw-r--r-- | gcc-4.6/libstdc++-v3/libsupc++/new | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc-4.6/libstdc++-v3/libsupc++/new b/gcc-4.6/libstdc++-v3/libsupc++/new index 80ee3ba..7f7fdb8 100644 --- a/gcc-4.6/libstdc++-v3/libsupc++/new +++ b/gcc-4.6/libstdc++-v3/libsupc++/new @@ -93,6 +93,7 @@ namespace std void* operator new(std::size_t) throw (std::bad_alloc); void* operator new[](std::size_t) throw (std::bad_alloc); void operator delete(void*) throw(); +void operator delete(void*, std::size_t) throw(); void operator delete[](void*) throw(); void* operator new(std::size_t, const std::nothrow_t&) throw(); void* operator new[](std::size_t, const std::nothrow_t&) throw(); |