mirror of https://github.com/AxioDL/tinyxml2.git
Reuse DeleteChild()
This commit is contained in:
parent
0bb5901961
commit
9cb4eca596
|
@ -760,11 +760,7 @@ void XMLNode::DeleteChildren()
|
||||||
{
|
{
|
||||||
while( _firstChild ) {
|
while( _firstChild ) {
|
||||||
TIXMLASSERT( _lastChild );
|
TIXMLASSERT( _lastChild );
|
||||||
TIXMLASSERT( _firstChild->_document == _document );
|
DeleteChild( _firstChild );
|
||||||
XMLNode* node = _firstChild;
|
|
||||||
Unlink( node );
|
|
||||||
|
|
||||||
DeleteNode( node );
|
|
||||||
}
|
}
|
||||||
_firstChild = _lastChild = 0;
|
_firstChild = _lastChild = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue