forked from bblanchon/ArduinoJson
Store 64-bit numbers (double
and long long
) in an additional slot
This change allows slots to be twices maller on 32-bit architectures. See #1650 and #2103
This commit is contained in:
@ -8,7 +8,7 @@ static_assert(ARDUINOJSON_LITTLE_ENDIAN == 1, "ARDUINOJSON_LITTLE_ENDIAN");
|
||||
|
||||
static_assert(ARDUINOJSON_USE_DOUBLE == 1, "ARDUINOJSON_USE_DOUBLE");
|
||||
|
||||
static_assert(sizeof(ArduinoJson::detail::VariantData) == 16,
|
||||
static_assert(sizeof(ArduinoJson::detail::VariantData) == 8,
|
||||
"sizeof(VariantData)");
|
||||
|
||||
void setup() {}
|
||||
|
Reference in New Issue
Block a user