Huge refactoring in progress...

This commit is contained in:
Benoit Blanchon
2014-10-30 14:03:33 +01:00
parent c3001e9ea9
commit 4c204840e9
25 changed files with 108 additions and 79 deletions

View File

@ -12,6 +12,8 @@
using namespace ArduinoJson;
using namespace ArduinoJson::Internals;
JsonValue JsonValue::_invalid(JSON_INVALID);
JsonValue::operator JsonArray &() const {
return _type == JSON_ARRAY ? *_content.asArray : JsonArray::invalid();
}