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

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