mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-02 00:38:26 +01:00
Removed JsonPair constructor
This commit is contained in:
@@ -12,7 +12,7 @@ namespace ArduinoJson {
|
||||
namespace Internals {
|
||||
|
||||
struct JsonObjectNode {
|
||||
JsonObjectNode(const char* key) : content(key), next(NULL) {}
|
||||
JsonObjectNode() : next(NULL) {}
|
||||
|
||||
JsonPair content;
|
||||
JsonObjectNode* next;
|
||||
|
||||
Reference in New Issue
Block a user