| 145 | |
| 146 | |
| 147 | TiXmlNode::~TiXmlNode() |
| 148 | { |
| 149 | TiXmlNode* node = firstChild; |
| 150 | TiXmlNode* temp = 0; |
| 151 | |
| 152 | while ( node ) |
| 153 | { |
| 154 | temp = node; |
| 155 | node = node->next; |
| 156 | delete temp; |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | |
| 161 | void TiXmlNode::CopyTo( TiXmlNode* target ) const |
nothing calls this directly
no outgoing calls
no test coverage detected