Destroy the node
| 120 | |
| 121 | // Destroy the node |
| 122 | void ProfileNode::destroy() { |
| 123 | delete mChildNode; |
| 124 | mChildNode = nullptr; |
| 125 | delete mSiblingNode; |
| 126 | mSiblingNode = nullptr; |
| 127 | } |
| 128 | |
| 129 | // Constructor |
| 130 | ProfileNodeIterator::ProfileNodeIterator(ProfileNode* startingNode) |
nothing calls this directly
no outgoing calls
no test coverage detected