mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-17 12:32:17 +02:00
Made JsonNode::type private
This commit is contained in:
@ -43,7 +43,7 @@ void JsonArray::add(double value, int decimals)
|
||||
|
||||
void JsonArray::add(long value)
|
||||
{
|
||||
JsonNode* node = createNode(JSON_LONG);
|
||||
JsonNode* node = createNode();
|
||||
if (!node) return;
|
||||
|
||||
node->setAsLong(value);
|
||||
|
Reference in New Issue
Block a user