Added a work around for Arduino 1.0.5

This commit is contained in:
Benoît Blanchon
2014-07-07 16:21:19 +02:00
parent 42968be535
commit f28997e367

View File

@ -39,7 +39,8 @@ namespace ArduinoJson
{
if (itemCount >= N) return;
items[itemCount++].set<DIGITS>(value);
Internals::JsonValue& v = items[itemCount++];
v.set<DIGITS>(value);
}
using JsonObjectBase::printTo;