forked from bblanchon/ArduinoJson
Fixed compilation error with old GCC version (like the one in Arduino 1.0.6)
This commit is contained in:
@ -92,7 +92,7 @@ class JsonObject : public Internals::JsonPrintable<JsonObject>,
|
||||
|
||||
private:
|
||||
// Create an empty JsonArray attached to the specified JsonBuffer.
|
||||
explicit JsonObject(JsonBuffer *buffer) : List(buffer) {}
|
||||
explicit JsonObject(JsonBuffer *buffer) : Internals::List<JsonPair>(buffer) {}
|
||||
|
||||
// Returns the list node that matches the specified key.
|
||||
node_type *getNodeAt(key_type key) const;
|
||||
|
Reference in New Issue
Block a user