mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-23 07:17:30 +02:00
Merged nestedTokenCount() and nextSibling()
This commit is contained in:
@ -32,10 +32,7 @@ namespace ArduinoJson
|
||||
return JsonToken(token + 1);
|
||||
}
|
||||
|
||||
JsonToken nextSibling() const
|
||||
{
|
||||
return JsonToken(token + 1 + nestedTokenCount());
|
||||
}
|
||||
JsonToken nextSibling() const;
|
||||
|
||||
bool operator!= (const JsonToken& other)
|
||||
{
|
||||
@ -79,9 +76,6 @@ namespace ArduinoJson
|
||||
|
||||
private:
|
||||
jsmntok_t* token;
|
||||
|
||||
int nestedTokenCount() const;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user