8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:43:02 +01:00

Fixed a compilation error in the release mode

This commit is contained in:
dimitr 2002-02-25 10:12:21 +00:00
parent 86f0de2a85
commit 257c13284f

View File

@ -190,6 +190,7 @@ void operator delete(void* mem)
void* operator new[](size_t s, MemoryPool* p)
{
assert(0);
return 0;
}
/** This operator new traps the standard libraries placement new. It simply
@ -199,6 +200,7 @@ void* operator new[](size_t s, MemoryPool* p)
void* operator new(size_t s, MemoryPool* p)
{
assert(0);
return 0;
}
#endif