Cleaned up

This commit is contained in:
Benoit Blanchon
2014-07-08 21:29:19 +02:00
parent 0a0757945e
commit c38af3e32c
9 changed files with 253 additions and 198 deletions

View File

@ -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--)
{