Missing noexcept

Former-commit-id: f214ada545f810f8a9095753984b75c438cd6464
This commit is contained in:
John Sully 2020-05-21 23:25:50 -04:00
parent 8a14bb4b10
commit 08a2facf13

View File

@ -22,7 +22,7 @@ void *operator new(size_t size, enum MALLOC_CLASS mclass)
return zmalloc(size, mclass);
}
void *operator new(std::size_t size, const std::nothrow_t &)
void *operator new(std::size_t size, const std::nothrow_t &) noexcept
{
return zmalloc(size, MALLOC_LOCAL);
}