commit | effab6ff066cf1195d7be439b81ed32ecdbaac8d | [log] [tgz] |
---|---|---|
author | Dmitry-Me <wipedout@yandex.ru> | Wed Jul 26 17:57:50 2017 +0300 |
committer | Dmitry-Me <wipedout@yandex.ru> | Wed Jul 26 17:57:50 2017 +0300 |
tree | bc3925504da5b8ea9bc4ea97107c162c186137fb | |
parent | f3f9925f1229873930a526c507f8721f74f1e80d [diff] [blame] |
Better variable name
diff --git a/tinyxml2.h b/tinyxml2.h index e6a0ced..a372b41 100755 --- a/tinyxml2.h +++ b/tinyxml2.h
@@ -341,8 +341,8 @@ void Clear() { // Delete the blocks. while( !_blockPtrs.Empty()) { - Block* b = _blockPtrs.Pop(); - delete b; + Block* lastBlock = _blockPtrs.Pop(); + delete lastBlock; } _root = 0; _currentAllocs = 0;