gcc 3 fixes
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4227 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
+4
-4
@@ -45,10 +45,10 @@ void *operator new (size_t) __THROW (std::bad_alloc);
|
||||
void *operator new[] (size_t) __THROW (std::bad_alloc);
|
||||
void operator delete (void *) __THROW(__nothing);
|
||||
void operator delete[] (void *) __THROW(__nothing);
|
||||
void *operator new (size_t, const nothrow_t&) __THROW(__nothing);
|
||||
void *operator new[] (size_t, const nothrow_t&) __THROW(__nothing);
|
||||
void operator delete (void *, const nothrow_t&) __THROW(__nothing);
|
||||
void operator delete[] (void *, const nothrow_t&) __THROW(__nothing);
|
||||
void *operator new (size_t, const std::nothrow_t&) __THROW(__nothing);
|
||||
void *operator new[] (size_t, const std::nothrow_t&) __THROW(__nothing);
|
||||
void operator delete (void *, const std::nothrow_t&) __THROW(__nothing);
|
||||
void operator delete[] (void *, const std::nothrow_t&) __THROW(__nothing);
|
||||
|
||||
// default placement versions of operator new
|
||||
#ifndef _BUILDING_NEW_CPP_
|
||||
|
||||
Reference in New Issue
Block a user