mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-18 13:02:25 +02:00
Reduced the size of JsonArrayBase::printTo() by 18 bytes
This commit is contained in:
@ -15,7 +15,7 @@ size_t JsonHashTableBase::printTo(Print& p) const
|
||||
|
||||
// NB: the code has been optimized for a small size on a 8-bit AVR
|
||||
|
||||
KeyValuePair* current = items;
|
||||
const KeyValuePair* current = items;
|
||||
for (int i = count; i > 0; i--)
|
||||
{
|
||||
n += current->key.printTo(p);
|
||||
|
Reference in New Issue
Block a user