mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-18 04:52:22 +02:00
Reduced the size of JsonValue to 6 bytes !
This commit is contained in:
@ -12,11 +12,6 @@ size_t JsonValue::printBoolTo(const Content& c, Print& p)
|
||||
return p.print(c.asBool ? "true" : "false");
|
||||
}
|
||||
|
||||
size_t JsonValue::printDoubleTo(const Content& c, Print& p)
|
||||
{
|
||||
return p.print(c.asDouble.value, c.asDouble.digits);
|
||||
}
|
||||
|
||||
size_t JsonValue::printLongTo(const Content& c, Print& p)
|
||||
{
|
||||
return p.print(c.asLong);
|
||||
|
Reference in New Issue
Block a user