Renamed JsonObjectBase::getNestedTokenCounts() into getNestedTokenCount()

This commit is contained in:
Benoit Blanchon
2014-01-11 15:23:08 +01:00
parent 43717bff1e
commit da37162a94
4 changed files with 5 additions and 5 deletions

View File

@ -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];