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:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user