Re: [Firebird-devel] fb_blk.h

2012-01-24 Thread Alex Peshkoff
On 01/24/12 15:11, Claudio Valderrama C. wrote: > Can someone suggest how and when is the compiler using the delete operators > with MemoryPool as second argument? It seems a leftover. Certainly, FB_NEW > and FB_NEW_RPT play with pools, but I see nothing else. > I know one case - after exception

[Firebird-devel] fb_blk.h

2012-01-24 Thread Claudio Valderrama C.
People, in fb_blk.h we have: void operator delete(void* mem, MemoryPool& p) { if (mem) p.deallocate(mem); } void operator delete[](void* mem, MemoryPool& p) { if (mem) p.dealloc