2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2022-01-01 10:00:54 +01:00
|
|
|
// Copyright © 2014-2022, 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
|
|
|
|
|
|
|
|
#if !ARDUINOJSON_HAS_LONG_LONG
|
2021-06-16 21:08:01 +02:00
|
|
|
# error This test requires C++11
|
2020-05-12 18:53:26 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
DynamicJsonDocument doc(1024);
|
|
|
|
doc["dummy"] = static_cast<long long>(42);
|
|
|
|
}
|