Merge pull request #263 from szhorvat/patch-3

do not write to stderr
This commit is contained in:
Jose Luis Blanco-Claraco
2025-07-29 13:41:17 +02:00
committed by GitHub

View File

@@ -935,7 +935,6 @@ class PooledAllocator
void* m = ::malloc(blocksize);
if (!m)
{
fprintf(stderr, "Failed to allocate memory.\n");
throw std::bad_alloc();
}