fix duplicated COUNT logic

This commit is contained in:
Lee Thomason (grinliz) 2012-10-19 09:08:15 -07:00
parent 7fbefab95d
commit 856da21652
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ private:
char mem[SIZE]; char mem[SIZE];
}; };
struct Block { struct Block {
Chunk chunk[1024/SIZE]; Chunk chunk[COUNT];
}; };
DynArray< Block*, 10 > _blockPtrs; DynArray< Block*, 10 > _blockPtrs;
Chunk* _root; Chunk* _root;