Definition in file object_arena_allocator.h.
#include "nel/misc/singelton.h"
Go to the source code of this file.
Namespaces | |
namespace | NLMISC |
Defines | |
#define | NL_USES_DEFAULT_ARENA_OBJECT_ALLOCATOR |
|
Value: void *operator new(size_t size, const char *filename, int line) { return NLMISC::CObjectArenaAllocator::getDefaultAllocator().alloc((uint) size); }\ void operator delete(void *block, const char *filename, int line) { NLMISC::CObjectArenaAllocator::getDefaultAllocator().free(block); } \ void operator delete(void *block) { NLMISC::CObjectArenaAllocator::getDefaultAllocator().free(block); } Definition at line 100 of file object_arena_allocator.h. |