struct cry_crt_node_allocator { const size_t MaxSize = ~0; };
CryMemoryAllocator.h
A class that forward node allocator calls directly to CRT
const size_t MaxSize = ~0;
static void * alloc(size_t __n);
static void * allocate(size_t __n);
static void * allocate(size_t __n, size_t nAlignment);
void cleanup();
static size_t dealloc(void * p);
static size_t deallocate(void * __p);