MCPcopy Create free account
hub / github.com/Norbyte/bg3se / DeleteChildren

Method DeleteChildren

CoreLib/tinyxml2.cpp:848–855  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

846}
847
848void XMLNode::DeleteChildren()
849{
850 while( _firstChild ) {
851 TIXMLASSERT( _lastChild );
852 DeleteChild( _firstChild );
853 }
854 _firstChild = _lastChild = 0;
855}
856
857
858void XMLNode::Unlink( XMLNode* child )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected