Better variable name

This commit is contained in:
Dmitry-Me 2017-07-26 17:57:50 +03:00
parent f3f9925f12
commit effab6ff06
1 changed files with 2 additions and 2 deletions

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;