Removed JsonPair constructor

This commit is contained in:
Benoit Blanchon
2014-11-05 09:31:29 +01:00
parent 8ac4346fd5
commit 5d0e326bfd
4 changed files with 8 additions and 9 deletions

View File

@@ -11,8 +11,6 @@
namespace ArduinoJson {
struct JsonPair {
JsonPair(const char* k) : key(k) {}
const char* key;
JsonVariant value;
};