mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-17 12:32:17 +02:00
Renamed JsonObjectBase::getNestedTokenCounts() into getNestedTokenCount()
This commit is contained in:
@ -18,7 +18,7 @@ jsmntok_t* JsonArray::getToken(int index)
|
||||
for (int i = 0; i < index; i++)
|
||||
{
|
||||
// move forward: current + nested tokens
|
||||
currentToken += 1 + getNestedTokenCounts(currentToken);
|
||||
currentToken += 1 + getNestedTokenCount(currentToken);
|
||||
}
|
||||
|
||||
return &tokens[currentToken];
|
||||
|
Reference in New Issue
Block a user