MCPcopy Create free account
hub / github.com/carbonengine/trinity / ClearTree

Function ClearTree

trinity/Eve/UI/EveSpherePinIndexTree.cpp:399–411  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

397}
398
399void ClearTree( EveSpherePinIndexTree::TreeNode* node )
400{
401 if( node->left )
402 {
403 ClearTree( node->left );
404 }
405 if( node->right )
406 {
407 ClearTree( node->right );
408 }
409
410 delete node;
411}
412
413// ------------------------------------------------------------------------------------------------------
414EveSpherePinIndexTree::EveSpherePinIndexTree( TriGrannyRes* granny ) :

Callers 2

InitializeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected