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:
parent
86f0de2a85
commit
257c13284f
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user