Confirm token equality, safer loop

Using different variable to iterate to guarantee unchanged behaviour
if anything doesn't work as intended.
This commit is contained in:
Daniel Zuncke 2023-10-17 20:24:02 +02:00
parent 979c74d0d0
commit 4a0841745a
No known key found for this signature in database
GPG Key ID: A2A8C43610B6B485
1 changed files with 9 additions and 2 deletions

View File

@ -1055,10 +1055,17 @@ private:
// Account for possible function literals in this array which offset
// the previously set index (pos). Fixes issue #432.
while(astInformation.indentInfoSortedByEndLocation[pos].endLocation !=
size_t newPos = pos;
while(astInformation.indentInfoSortedByEndLocation[newPos].endLocation <
tokens[index].index)
{
pos++;
newPos++;
}
if (astInformation.indentInfoSortedByEndLocation[newPos].endLocation ==
tokens[index].index)
{
pos = newPos;
}
auto indentInfo = astInformation.indentInfoSortedByEndLocation[pos];