MCPcopy Create free account
hub / github.com/ajkhoury/ReClassEx / DeleteChildren

Method DeleteChildren

ReClass/tinyxml2.cpp:795–802  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

793}
794
795void XMLNode::DeleteChildren()
796{
797 while( _firstChild ) {
798 TIXMLASSERT( _lastChild );
799 DeleteChild( _firstChild );
800 }
801 _firstChild = _lastChild = 0;
802}
803
804
805void XMLNode::Unlink( XMLNode* child )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected