Fix warning in test - missing exception specifier for overload of operator new

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@212723 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow 2014-07-10 15:19:50 +00:00
parent bbeca21f26
commit 7778249d2d

View File

@ -19,7 +19,7 @@
unsigned delete_called = 0;
void* operator new[](size_t sz)
void* operator new[](size_t sz) throw(std::bad_alloc)
{
return operator new(sz);
}