mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-17 12:32:17 +02:00
Extracted class JsonArrayBase to reduce code size
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user