forked from bblanchon/ArduinoJson
This change allows slots to be twices maller on 32-bit architectures. See #1650 and #2103
16 lines
457 B
C++
16 lines
457 B
C++
#include <ArduinoJson.h>
|
|
|
|
static_assert(ARDUINOJSON_USE_LONG_LONG == 1, "ARDUINOJSON_USE_LONG_LONG");
|
|
|
|
static_assert(ARDUINOJSON_SLOT_ID_SIZE == 2, "ARDUINOJSON_SLOT_ID_SIZE");
|
|
|
|
static_assert(ARDUINOJSON_LITTLE_ENDIAN == 1, "ARDUINOJSON_LITTLE_ENDIAN");
|
|
|
|
static_assert(ARDUINOJSON_USE_DOUBLE == 1, "ARDUINOJSON_USE_DOUBLE");
|
|
|
|
static_assert(sizeof(ArduinoJson::detail::VariantData) == 8,
|
|
"sizeof(VariantData)");
|
|
|
|
void setup() {}
|
|
void loop() {}
|