mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-16 03:52:16 +02:00
Parse empty array
This commit is contained in:
@ -18,4 +18,9 @@ JsonNode* JsonBuffer::createNode()
|
||||
if (!node) return 0;
|
||||
|
||||
return new (node) JsonNode();
|
||||
}
|
||||
|
||||
JsonArray JsonBuffer::parseArray(char const *string)
|
||||
{
|
||||
return JsonArray();
|
||||
}
|
Reference in New Issue
Block a user