Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/src/commit/37e60acb2c05c37d1559b28fbad9f50c3694ffde/third-party/ArduinoJson/extras/tests/FailingBuilds/Issue1189.cpp
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
// ArduinoJson - https://arduinojson.org
|
|
// Copyright Benoit Blanchon 2014-2021
|
|
// MIT License
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
// a function should not be able to get a JsonDocument by value
|
|
void f(JsonDocument) {}
|
|
|
|
int main() {
|
|
DynamicJsonDocument doc(1024);
|
|
f(doc);
|
|
}
|
|
|