Extracted class JsonArrayBase to reduce code size

This commit is contained in:
Benoît Blanchon
2014-07-08 13:38:37 +02:00
parent bbc18b5ca4
commit 5bb6cd0fa9
9 changed files with 103 additions and 57 deletions

View File

@ -8,7 +8,7 @@ size_t JsonHashTableBase::printTo(Print& p) const
n += p.write('{');
for (int i = 0; i < itemCount; i++)
for (int i = 0; i < count; i++)
{
if (i > 0)
{