Missing noexcept
Former-commit-id: f214ada545f810f8a9095753984b75c438cd6464
This commit is contained in:
parent
8a14bb4b10
commit
08a2facf13
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user