forked from bblanchon/ArduinoJson
Cleaned up
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
/*
|
||||
* Arduino JSON library
|
||||
* Benoit Blanchon 2014 - MIT License
|
||||
*/
|
||||
|
||||
#include "JsonHashTable.h"
|
||||
|
||||
using namespace ArduinoJson::Generator;
|
||||
@ -8,6 +13,8 @@ size_t JsonHashTableBase::printTo(Print& p) const
|
||||
|
||||
n += p.write('{');
|
||||
|
||||
// NB: the code has been optimized for a small size on a 8-bit AVR
|
||||
|
||||
KeyValuePair* current = items;
|
||||
for (int i = count; i > 0; i--)
|
||||
{
|
||||
|
Reference in New Issue
Block a user