Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/src/commit/c1f3ae4d537189c35bba221a5b2e209e347ad9cd/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 © 2014-2022, Benoit BLANCHON
|
|
// 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);
|
|
}
|
|
|