Replaced set() by operator=()

This commit is contained in:
Benoit Blanchon
2014-07-31 19:48:51 +02:00
parent 2c29327ebd
commit 7877ee1b4c
4 changed files with 11 additions and 11 deletions

View File

@ -25,7 +25,7 @@ namespace ArduinoJson
{
if (count >= capacity) return;
items[count++].set(value);
items[count++] = value;
}
template<int DIGITS>