MCPcopy Create free account
hub / github.com/JayXon/Leanify / DeleteNode

Method DeleteNode

lib/tinyxml2/tinyxml2.cpp:926–934  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

924}
925
926void XMLNode::DeleteNode( XMLNode* node )
927{
928 if ( node == 0 ) {
929 return;
930 }
931 MemPool* pool = node->_memPool;
932 node->~XMLNode();
933 pool->Free( node );
934}
935
936void XMLNode::InsertChildPreamble( XMLNode* insertThis ) const
937{

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