mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-18 04:52:22 +02:00
Added a work around for Arduino 1.0.5
This commit is contained in:
@ -39,7 +39,8 @@ namespace ArduinoJson
|
|||||||
{
|
{
|
||||||
if (itemCount >= N) return;
|
if (itemCount >= N) return;
|
||||||
|
|
||||||
items[itemCount++].set<DIGITS>(value);
|
Internals::JsonValue& v = items[itemCount++];
|
||||||
|
v.set<DIGITS>(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
using JsonObjectBase::printTo;
|
using JsonObjectBase::printTo;
|
||||||
|
Reference in New Issue
Block a user