Parse an array with two longs

This commit is contained in:
Benoit Blanchon
2014-10-14 21:48:22 +02:00
parent ee205971e9
commit beb49a9446
4 changed files with 42 additions and 9 deletions

View File

@ -22,5 +22,5 @@ JsonNode* JsonBuffer::createNode()
JsonArray JsonBuffer::parseArray(char* json)
{
JsonParser parser(this, json);
return JsonArray(parser.parseNode());
return JsonArray(parser.parseAnything());
}