Skip to content
Snippets Groups Projects
Commit 10a9571f authored by casse's avatar casse
Browse files

Fix to windows port.

parent 4ef07fa0
No related branches found
No related tags found
No related merge requests found
......@@ -231,7 +231,7 @@ void Parser::parseValue(io::InStream& in, token_t t) {
switch(t) {
case LBRACE: m.beginObject(); parseObject(in); return;
case LBRACK: m.beginArray(); parseArray(in); return;
case _NULL: m.onNull(); return;
case NULL_TOKEN: m.onNull(); return;
case TRUE: { m.onValue(true); return; }
case FALSE: { m.onValue(false); return; }
case INT: { int i; text >> i; m.onValue(i); return; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment