Skip to content

Commit e4621a3

Browse files
committed
remove debug statements
1 parent 234e463 commit e4621a3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/parse.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ json::object json::parser::parseValue() {
3030
this->skipWhitespace();
3131
char firstChar = this->getCurrChar();
3232

33-
std::cout << firstChar << std::endl;
3433
if (firstChar == 't' || firstChar == 'f' || firstChar == 'n' ||
3534
firstChar == 'u')
3635
return this->parseBooleanNullOrUndefined();
@@ -43,7 +42,6 @@ json::object json::parser::parseValue() {
4342
else if (firstChar == '{')
4443
return this->parseMap();
4544

46-
// std::cout << this->getPrevChar() << this->getCurrChar() << std::endl;
4745
throw std::runtime_error("Invalid JSON (first character)");
4846
}
4947

0 commit comments

Comments
 (0)