MCPcopy Create free account
hub / github.com/NanoMichael/MicroTeX / DeleteNode

Method DeleteNode

src/xml/tinyxml2.cpp:861–868  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

859}
860
861void XMLNode::DeleteNode( XMLNode* node ) {
862 if ( node == 0 ) {
863 return;
864 }
865 MemPool* pool = node->_memPool;
866 node->~XMLNode();
867 pool->Free( node );
868}
869
870void XMLNode::InsertChildPreamble( XMLNode* insertThis ) const {
871 TIXMLASSERT( insertThis );

Callers

nothing calls this directly

Calls 4

~XMLNodeMethod · 0.80
FreeMethod · 0.80
DeleteChildMethod · 0.80
SetTrackedMethod · 0.80

Tested by

no test coverage detected