mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-11-02 07:31:36 +01:00
Remove capacity from JsonDocument's constructor
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
#include <ArduinoJson.h>
|
||||
|
||||
void setup() {
|
||||
JsonDocument doc(1024);
|
||||
JsonDocument doc;
|
||||
|
||||
// You can use a String as your JSON input.
|
||||
// WARNING: the string in the input will be duplicated in the JsonDocument.
|
||||
|
||||
Reference in New Issue
Block a user