MCPcopy Create free account
hub / github.com/crossuo/crossuo / DeleteChild

Method DeleteChild

external/tinyxml2.cpp:860–870  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

858
859
860void XMLNode::DeleteChild( XMLNode* node )
861{
862 TIXMLASSERT( node );
863 TIXMLASSERT( node->_document == _document );
864 TIXMLASSERT( node->_parent == this );
865 Unlink( node );
866 TIXMLASSERT(node->_prev == 0);
867 TIXMLASSERT(node->_next == 0);
868 TIXMLASSERT(node->_parent == 0);
869 DeleteNode( node );
870}
871
872
873XMLNode* XMLNode::InsertEndChild( XMLNode* addThis )

Callers 1

DeleteNodeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected