mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 00:38:27 +01:00
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;
|
||||
}
|
||||
|
||||
JsonValue(int value) : JsonValue((long) value)
|
||||
{
|
||||
JsonValue(int value)
|
||||
: implementation(&JsonValue::printLongTo)
|
||||
{
|
||||
content.asLong = value;
|
||||
}
|
||||
|
||||
JsonValue(Printable& value)
|
||||
|
||||
Reference in New Issue
Block a user