#ifndef DEBUG
# define ALLOC() \
do \
{ \
customAllocator.allocate(); \
} while(0)
#else
# define ALLOC() \
do \
{ \
malloc(); \
} while(0)
#endif