0
[inline]
operator new with a specific pool
Definition at line 198 of file FXMemoryPool.h.
References FX::malloc().
00199 { 00200 void *ret; 00201 if(!(ret=FX::malloc(size, heap, alignment))) throw std::bad_alloc(); 00202 return ret; 00203 }