forked from bblanchon/ArduinoJson
Remove StaticJsonDocument
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
|
||||
template <typename TArray>
|
||||
static void run_iterator_test() {
|
||||
StaticJsonDocument<JSON_ARRAY_SIZE(2)> doc;
|
||||
DynamicJsonDocument doc(JSON_ARRAY_SIZE(2));
|
||||
JsonArray tmp = doc.to<JsonArray>();
|
||||
tmp.add(12);
|
||||
tmp.add(34);
|
||||
|
Reference in New Issue
Block a user