Renamed *.ipp to *Impl.hpp because they were ignored by Arduino IDE (issue #396)

This commit is contained in:
Benoit Blanchon
2016-12-03 22:19:11 +01:00
parent 6cfe2a58eb
commit 66c28020c5
11 changed files with 92 additions and 87 deletions

View File

@@ -165,4 +165,13 @@ class JsonObject : public Internals::JsonPrintable<JsonObject>,
value);
}
};
namespace Internals {
template <>
struct JsonVariantDefault<JsonObject> {
static JsonObject& get() {
return JsonObject::invalid();
}
};
}
}