mirror of https://github.com/AxioDL/tinyxml2.git
Better variable name
This commit is contained in:
parent
f3f9925f12
commit
effab6ff06
|
@ -341,8 +341,8 @@ public:
|
||||||
void Clear() {
|
void Clear() {
|
||||||
// Delete the blocks.
|
// Delete the blocks.
|
||||||
while( !_blockPtrs.Empty()) {
|
while( !_blockPtrs.Empty()) {
|
||||||
Block* b = _blockPtrs.Pop();
|
Block* lastBlock = _blockPtrs.Pop();
|
||||||
delete b;
|
delete lastBlock;
|
||||||
}
|
}
|
||||||
_root = 0;
|
_root = 0;
|
||||||
_currentAllocs = 0;
|
_currentAllocs = 0;
|
||||||
|
|
Loading…
Reference in New Issue