MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / DeleteChildren

Method DeleteChildren

3rdparty/tinyxml2/tinyxml2.cpp:878–885  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

876}
877
878void XMLNode::DeleteChildren()
879{
880 while( _firstChild ) {
881 TIXMLASSERT( _lastChild );
882 DeleteChild( _firstChild );
883 }
884 _firstChild = _lastChild = 0;
885}
886
887
888void XMLNode::Unlink( XMLNode* child )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected