From effab6ff066cf1195d7be439b81ed32ecdbaac8d Mon Sep 17 00:00:00 2001 From: Dmitry-Me Date: Wed, 26 Jul 2017 17:57:50 +0300 Subject: [PATCH] Better variable name --- tinyxml2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tinyxml2.h b/tinyxml2.h index e6a0ced..a372b41 100755 --- a/tinyxml2.h +++ b/tinyxml2.h @@ -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;