Added a test that stores an integer in a JsonValue

This commit is contained in:
Benoît Blanchon
2014-07-02 13:06:38 +02:00
parent 937837848c
commit 61e53a505d
2 changed files with 19 additions and 1 deletions

View File

@ -15,7 +15,7 @@ public:
JsonValue()
{
}
JsonValue(bool value)
: implementation(&JsonValue::printBoolTo)
{
@ -34,6 +34,10 @@ public:
content.asLong = value;
}
JsonValue(int value) : JsonValue((long) value)
{
}
JsonValue(Printable& value)
: implementation(&JsonValue::printPrintableTo)
{