mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-02 16:14:19 +01:00
Fixed inner object bug
This commit is contained in:
@@ -5,6 +5,7 @@ class JsonBuffer;
|
||||
enum JsonNodeType
|
||||
{
|
||||
JSON_UNDEFINED,
|
||||
JSON_PROXY,
|
||||
JSON_NULL,
|
||||
JSON_ARRAY,
|
||||
JSON_OBJECT,
|
||||
@@ -42,5 +43,10 @@ struct JsonNode
|
||||
JsonBuffer* buffer;
|
||||
} asObject;
|
||||
|
||||
struct
|
||||
{
|
||||
JsonNode* target;
|
||||
} asProxy;
|
||||
|
||||
} content;
|
||||
};
|
||||
Reference in New Issue
Block a user