Merge pull request #590 from Dmitry-Me/betterVariableName

Better variable name
This commit is contained in:
Lee Thomason
2017-07-28 08:55:16 -07:00
committed by GitHub

View File

@@ -341,8 +341,8 @@ public:
void Clear() {
// Delete the blocks.
while( !_blockPtrs.Empty()) {
Block* b = _blockPtrs.Pop();
delete b;
Block* lastBlock = _blockPtrs.Pop();
delete lastBlock;
}
_root = 0;
_currentAllocs = 0;