36 explicit DirtyAllocator(
const int dim,
const int tabSize = 10000);
39 DirtyAllocator(
const DirtyAllocator& other) =
delete;
40 DirtyAllocator& operator=(
const DirtyAllocator& other) =
delete;
44 inline void* newConf()
46 if (currentConf >= endOfTablePtr)
51 void* ret = currentConf;
52 currentConf =
reinterpret_cast<char*
>(currentConf) + cellSize;