forked from bblanchon/ArduinoJson
Replaced set() by operator=()
This commit is contained in:
@ -25,7 +25,7 @@ namespace ArduinoJson
|
||||
{
|
||||
if (count >= capacity) return;
|
||||
|
||||
items[count++].set(value);
|
||||
items[count++] = value;
|
||||
}
|
||||
|
||||
template<int DIGITS>
|
||||
|
Reference in New Issue
Block a user