forked from bblanchon/ArduinoJson
Remove capacity from JsonDocument
's constructor
This commit is contained in:
@ -8,6 +8,6 @@ struct Stream {};
|
||||
|
||||
int main() {
|
||||
Stream* stream = 0;
|
||||
JsonDocument doc(1024);
|
||||
JsonDocument doc;
|
||||
deserializeJson(doc, stream);
|
||||
}
|
||||
|
Reference in New Issue
Block a user