MCPcopy Create free account
hub / github.com/PolygonTek/BlueshiftEngine / DeleteNode

Method DeleteNode

Source/ThirdParty/tinyxml2/tinyxml2.cpp:1038–1046  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1036}
1037
1038void XMLNode::DeleteNode( XMLNode* node )
1039{
1040 if ( node == 0 ) {
1041 return;
1042 }
1043 MemPool* pool = node->_memPool;
1044 node->~XMLNode();
1045 pool->Free( node );
1046}
1047
1048void XMLNode::InsertChildPreamble( XMLNode* insertThis ) const
1049{

Callers

nothing calls this directly

Calls 4

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

Tested by

no test coverage detected