Parse empty array

This commit is contained in:
Benoit Blanchon
2014-10-14 17:16:21 +02:00
parent c7dcf864cc
commit f468db6757
4 changed files with 24 additions and 1 deletions

View File

@ -18,4 +18,9 @@ JsonNode* JsonBuffer::createNode()
if (!node) return 0;
return new (node) JsonNode();
}
JsonArray JsonBuffer::parseArray(char const *string)
{
return JsonArray();
}