mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-16 03:52:16 +02:00
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