| 17 | } |
| 18 | |
| 19 | bool RapidJsonHandler::Bool(bool b) |
| 20 | { |
| 21 | if (!m_NodeStack.size()) |
| 22 | return false; |
| 23 | |
| 24 | TreeNode* parent = m_NodeStack.top(); |
| 25 | InsertToTree(parent, b ? STR_TRUE : STR_FALSE, false); |
| 26 | return true; |
| 27 | } |
| 28 | |
| 29 | bool RapidJsonHandler::Int(int /*i*/) |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected