mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2026-05-04 03:52:04 +02:00
Merge DynamicJsonDocument with JsonDocument
This commit is contained in:
@@ -481,7 +481,7 @@ jobs:
|
||||
g++ -x c++ - <<END
|
||||
#include "${{ steps.amalgamate.outputs.filename }}"
|
||||
int main() {
|
||||
DynamicJsonDocument doc(300);
|
||||
JsonDocument doc(300);
|
||||
deserializeJson(doc, "{}");
|
||||
}
|
||||
END
|
||||
@@ -515,7 +515,7 @@ jobs:
|
||||
g++ -x c++ - <<END
|
||||
#include "${{ steps.amalgamate.outputs.filename }}"
|
||||
int main() {
|
||||
ArduinoJson::DynamicJsonDocument doc(300);
|
||||
ArduinoJson::JsonDocument doc(300);
|
||||
deserializeJson(doc, "{}");
|
||||
}
|
||||
END
|
||||
|
||||
Reference in New Issue
Block a user