Epic refactoring in progress...

This commit is contained in:
Benoit Blanchon
2014-10-27 13:34:54 +01:00
parent e0980292ef
commit 8988cb4761
19 changed files with 343 additions and 341 deletions

View File

@ -142,7 +142,8 @@ JsonObject JsonParser::parseObject() {
const char *key = parseString();
if (!key) return NULL;
skip(':')
if (!skip(':'))
return NULL;
JsonValue value = object[key];