mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-29 10:17:39 +02:00
Test that boolean values can be stored in a JsonObject
This commit is contained in:
@ -7,8 +7,7 @@ enum JsonNodeType
|
||||
JSON_ARRAY,
|
||||
JSON_OBJECT,
|
||||
JSON_KEY,
|
||||
JSON_TRUE,
|
||||
JSON_FALSE,
|
||||
JSON_BOOLEAN,
|
||||
JSON_STRING,
|
||||
JSON_INTEGER,
|
||||
JSON_DOUBLE_0_DECIMALS,
|
||||
@ -24,6 +23,7 @@ struct JsonNode
|
||||
|
||||
union
|
||||
{
|
||||
bool asBoolean;
|
||||
double asDouble;
|
||||
int asInteger;
|
||||
|
||||
|
Reference in New Issue
Block a user