We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 234e463 commit e4621a3Copy full SHA for e4621a3
src/parse.cpp
@@ -30,7 +30,6 @@ json::object json::parser::parseValue() {
30
this->skipWhitespace();
31
char firstChar = this->getCurrChar();
32
33
- std::cout << firstChar << std::endl;
34
if (firstChar == 't' || firstChar == 'f' || firstChar == 'n' ||
35
firstChar == 'u')
36
return this->parseBooleanNullOrUndefined();
@@ -43,7 +42,6 @@ json::object json::parser::parseValue() {
43
42
else if (firstChar == '{')
44
return this->parseMap();
45
46
- // std::cout << this->getPrevChar() << this->getCurrChar() << std::endl;
47
throw std::runtime_error("Invalid JSON (first character)");
48
}
49
0 commit comments