Reduced usages of EscapedString

This commit is contained in:
Benoit Blanchon
2014-08-01 15:22:30 +02:00
parent 1a01800782
commit 7c99d4d63d
6 changed files with 20 additions and 25 deletions

View File

@ -38,8 +38,8 @@ namespace ArduinoJson
struct KeyValuePair
{
Internals::EscapedString key;
JsonValue value;
const char* key;
JsonValue value;
};
JsonObjectBase(KeyValuePair* items, int capacity)