mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-21 23:30:38 +08:00
Fix yet another dynamic exception spec
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@289357 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -29,7 +29,7 @@ std::atomic<unsigned> throw_one(0xFFFF);
|
|||||||
std::atomic<unsigned> outstanding_new(0);
|
std::atomic<unsigned> outstanding_new(0);
|
||||||
|
|
||||||
|
|
||||||
void* operator new(std::size_t s) throw(std::bad_alloc)
|
void* operator new(std::size_t s) TEST_THROW_SPEC(std::bad_alloc)
|
||||||
{
|
{
|
||||||
if (throw_one == 0)
|
if (throw_one == 0)
|
||||||
TEST_THROW(std::bad_alloc());
|
TEST_THROW(std::bad_alloc());
|
||||||
@@ -40,7 +40,7 @@ void* operator new(std::size_t s) throw(std::bad_alloc)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void operator delete(void* p) throw()
|
void operator delete(void* p) TEST_NOEXCEPT
|
||||||
{
|
{
|
||||||
--outstanding_new;
|
--outstanding_new;
|
||||||
std::free(p);
|
std::free(p);
|
||||||
|
Reference in New Issue
Block a user