Reduced the size of JsonValue to 6 bytes !

This commit is contained in:
Benoît Blanchon
2014-07-07 13:27:12 +02:00
parent be6c4bf4d1
commit 3b6ce65054
2 changed files with 14 additions and 19 deletions

View File

@ -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);