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

@ -19,7 +19,7 @@ namespace ArduinoJson
template<typename T>
void add(const char* key, T value)
{
getValue(key).set(value);
getValue(key) = value;
}
template<int DIGITS>