forked from bblanchon/ArduinoJson
Replace C++11 syntax that what not supported by the Arduino IDE
This commit is contained in:
@ -40,8 +40,10 @@ public:
|
|||||||
content.asLong = value;
|
content.asLong = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
JsonValue(int value) : JsonValue((long) value)
|
JsonValue(int value)
|
||||||
|
: implementation(&JsonValue::printLongTo)
|
||||||
{
|
{
|
||||||
|
content.asLong = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
JsonValue(Printable& value)
|
JsonValue(Printable& value)
|
||||||
|
Reference in New Issue
Block a user