Got rid of throw()'s

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3834 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Tyler Dauwalder
2003-07-04 06:23:37 +00:00
parent 3f4628f1ae
commit d2e3d64aa6
+2 -2
View File
@@ -42,7 +42,7 @@ operator new(size_t size)
inline void * inline void *
operator new(size_t size, const nothrow_t&) throw() operator new(size_t size, const nothrow_t&)
{ {
return malloc(size); return malloc(size);
} }
@@ -56,7 +56,7 @@ operator new[](size_t size)
inline void * inline void *
operator new[](size_t size, const nothrow_t&) throw() operator new[](size_t size, const nothrow_t&)
{ {
return malloc(size); return malloc(size);
} }