forked from bblanchon/ArduinoJson
Added a work around for Arduino 1.0.5
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user