mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-17 12:32:17 +02:00
Test that JsonArray grows after calling add()
This commit is contained in:
@ -16,7 +16,10 @@ public:
|
||||
|
||||
// JsonValue operator[](int index);
|
||||
|
||||
// template<typename T>
|
||||
// void add(T value);
|
||||
template<typename T>
|
||||
void add(T value)
|
||||
{
|
||||
addChild(createNode(JSON_UNDEFINED));
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user