Fixed casting JsonValue to string

This commit is contained in:
Benoit Blanchon
2014-08-01 15:23:14 +02:00
parent 7c99d4d63d
commit 0d28612507

View File

@ -66,7 +66,7 @@ namespace ArduinoJson
operator const char*()
{
return "";
return content.asString;
}
operator double()