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:
parent
3f4628f1ae
commit
d2e3d64aa6
@ -42,7 +42,7 @@ operator new(size_t size)
|
||||
|
||||
|
||||
inline void *
|
||||
operator new(size_t size, const nothrow_t&) throw()
|
||||
operator new(size_t size, const nothrow_t&)
|
||||
{
|
||||
return malloc(size);
|
||||
}
|
||||
@ -56,7 +56,7 @@ operator new[](size_t size)
|
||||
|
||||
|
||||
inline void *
|
||||
operator new[](size_t size, const nothrow_t&) throw()
|
||||
operator new[](size_t size, const nothrow_t&)
|
||||
{
|
||||
return malloc(size);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user