MCPcopy Create free account
hub / github.com/avast/retdec / DeleteChild

Method DeleteChild

deps/tinyxml2/tinyxml2.cpp:850–860  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

848
849
850void XMLNode::DeleteChild( XMLNode* node )
851{
852 TIXMLASSERT( node );
853 TIXMLASSERT( node->_document == _document );
854 TIXMLASSERT( node->_parent == this );
855 Unlink( node );
856 TIXMLASSERT(node->_prev == 0);
857 TIXMLASSERT(node->_next == 0);
858 TIXMLASSERT(node->_parent == 0);
859 DeleteNode( node );
860}
861
862
863XMLNode* XMLNode::InsertEndChild( XMLNode* addThis )

Callers 1

DeleteNodeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected