Changed JsonArray tests to show the issue

This commit is contained in:
Benoit Blanchon
2014-08-04 09:22:45 +02:00
parent df52dceaa1
commit bc86ae800a
4 changed files with 25 additions and 19 deletions

View File

@ -20,12 +20,17 @@ namespace ArduinoJson
}
void add(const Printable& nestedObject)
{
if (count < capacity)
items[count++] = nestedObject;
}
template<typename T>
void add(T value)
{
if (count >= capacity) return;
items[count++] = value;
if (count < capacity)
items[count++] = value;
}
template<int DIGITS>