Replaced JsonToken operators by meaningful methods

This commit is contained in:
Benoit Blanchon
2014-07-18 15:54:49 +02:00
parent 4a1d8483cc
commit 714a37bd59
6 changed files with 18 additions and 17 deletions

View File

@ -23,7 +23,7 @@ namespace ArduinoJson
JsonArrayIterator operator++()
{
JsonArrayIterator prev = *this;
token += 1;
token = token.nextSibling();
return prev;
}