forked from bblanchon/ArduinoJson
Removed uneeded cast operators
This commit is contained in:
@ -52,14 +52,4 @@ JsonValue::operator long()
|
||||
JsonValue::operator char*()
|
||||
{
|
||||
return isString() || isPrimitive() ? getText() : 0;
|
||||
}
|
||||
|
||||
JsonValue::operator JsonArray()
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
JsonValue::operator JsonObject()
|
||||
{
|
||||
return *this;
|
||||
}
|
Reference in New Issue
Block a user