|
|
@ -82,7 +82,9 @@ private:
|
|
|
|
// NL_USES_DEFAULT_ARENA_OBJECT_ALLOCATOR // for fast alloc
|
|
|
|
// NL_USES_DEFAULT_ARENA_OBJECT_ALLOCATOR // for fast alloc
|
|
|
|
# define NL_USES_DEFAULT_ARENA_OBJECT_ALLOCATOR \
|
|
|
|
# define NL_USES_DEFAULT_ARENA_OBJECT_ALLOCATOR \
|
|
|
|
void *operator new(size_t size) { return NLMISC::CObjectArenaAllocator::getDefaultAllocator().alloc((uint) size); }\
|
|
|
|
void *operator new(size_t size) { return NLMISC::CObjectArenaAllocator::getDefaultAllocator().alloc((uint) size); }\
|
|
|
|
void operator delete(void *block) { NLMISC::CObjectArenaAllocator::getDefaultAllocator().free(block); }
|
|
|
|
void *operator new(size_t size, int _BlockUse, char const* _FileName, int _LineNumber) { return NLMISC::CObjectArenaAllocator::getDefaultAllocator().alloc((uint) size); }\
|
|
|
|
|
|
|
|
void operator delete(void *block) { NLMISC::CObjectArenaAllocator::getDefaultAllocator().freeBlock(block); }\
|
|
|
|
|
|
|
|
void operator delete(void *block, int _BlockUse, char const* _FileName, int _LineNumber) { NLMISC::CObjectArenaAllocator::getDefaultAllocator().freeBlock(block); }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|