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

@@ -12,7 +12,7 @@ namespace ArduinoJson {
namespace Internals {
struct JsonObjectNode {
JsonObjectNode(const char* key) : content(key), next(NULL) {}
JsonObjectNode() : next(NULL) {}
JsonPair content;
JsonObjectNode* next;