forked from bblanchon/ArduinoJson
Test that integers can be stored in a JsonObject
This commit is contained in:
@ -48,7 +48,7 @@ size_t JsonObject::size()
|
||||
JsonValue JsonObject::operator[](char const* key)
|
||||
{
|
||||
JsonNode* node = getOrCreateNodeAt(key);
|
||||
return JsonValue(/*node*/);
|
||||
return JsonValue(node);
|
||||
}
|
||||
|
||||
JsonNode* JsonObject::getOrCreateNodeAt(char const* key)
|
||||
|
Reference in New Issue
Block a user