This commit is contained in:
bkuhls 2026-04-14 07:32:54 +02:00 committed by GitHub
commit 1b1445fc06
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -100,7 +100,7 @@ handleOOM(std::size_t size, bool nothrow) {
}
if (ptr == nullptr && !nothrow)
std::__throw_bad_alloc();
throw std::bad_alloc();
return ptr;
}