| 216 | } |
| 217 | |
| 218 | void RapidJsonHandler::AppendNodeCount(unsigned elementCount, bool bArray) |
| 219 | { |
| 220 | if (!m_NodeStack.empty()) |
| 221 | { |
| 222 | TreeNode* node = m_NodeStack.top(); |
| 223 | m_NodeStack.pop(); |
| 224 | |
| 225 | if (node->subRoot && node->subRoot != m_treeRoot) |
| 226 | m_pTreeHandler->AppendNodeCount(node->subRoot, elementCount, bArray); |
| 227 | |
| 228 | delete node; |
| 229 | } |
| 230 | } |
nothing calls this directly
no outgoing calls
no test coverage detected