MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / DeleteChild

Method DeleteChild

native/thirdpart/tinyxml2/tinyxml2.cpp:882–892  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

880
881
882void XMLNode::DeleteChild( XMLNode* node )
883{
884 TIXMLASSERT( node );
885 TIXMLASSERT( node->_document == _document );
886 TIXMLASSERT( node->_parent == this );
887 Unlink( node );
888 TIXMLASSERT(node->_prev == 0);
889 TIXMLASSERT(node->_next == 0);
890 TIXMLASSERT(node->_parent == 0);
891 DeleteNode( node );
892}
893
894
895XMLNode* XMLNode::InsertEndChild( XMLNode* addThis )

Callers 1

DeleteNodeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected