MCPcopy Create free account
hub / github.com/NPP-JSONViewer/JSON-Viewer / Bool

Method Bool

src/NppJsonViewer/RapidJsonHandler.cpp:19–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17}
18
19bool 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
29bool RapidJsonHandler::Int(int /*i*/)
30{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected