2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2023-02-16 11:45:01 +01:00
|
|
|
// Copyright © 2014-2023, Benoit BLANCHON
|
2020-05-12 18:53:26 +02:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
#define ARDUINOJSON_USE_LONG_LONG 0
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
|
|
|
|
#if defined(__SIZEOF_LONG__) && __SIZEOF_LONG__ >= 8
|
2021-06-16 21:08:01 +02:00
|
|
|
# error This test requires sizeof(long) < 8
|
2020-05-12 18:53:26 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
int main() {
|
2023-03-20 10:49:01 +01:00
|
|
|
JsonDocument doc(1024);
|
2020-05-12 18:53:26 +02:00
|
|
|
doc["dummy"] = static_cast<long long>(42);
|
|
|
|
}
|