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

Method DeleteChild

3rdparty/tinyxml2/tinyxml2.cpp:912–922  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

910
911
912void XMLNode::DeleteChild( XMLNode* node )
913{
914 TIXMLASSERT( node );
915 TIXMLASSERT( node->_document == _document );
916 TIXMLASSERT( node->_parent == this );
917 Unlink( node );
918 TIXMLASSERT(node->_prev == 0);
919 TIXMLASSERT(node->_next == 0);
920 TIXMLASSERT(node->_parent == 0);
921 DeleteNode( node );
922}
923
924
925XMLNode* XMLNode::InsertEndChild( XMLNode* addThis )

Callers 1

DeleteNodeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected