Use EscapedString for keys in JsonHashTable

This commit is contained in:
Benoît Blanchon
2014-07-07 13:48:50 +02:00
parent 1b62502b36
commit b3613f7137
4 changed files with 16 additions and 18 deletions

View File

@ -10,10 +10,10 @@
class EscapedString
{
public:
EscapedString(const char* s)
: rawString(s)
{
void set(const char* s)
{
rawString = s;
}
size_t printTo(Print&) const;