clang-format: A few minor comment-spacing fixes

This commit is contained in:
Tim Wojtulewicz 2021-09-24 14:36:54 -07:00
parent 9cb54f5d44
commit 07e276ab2e
2 changed files with 5 additions and 4 deletions

View file

@ -1239,7 +1239,7 @@ void Dictionary::InsertRelocateAndAdjust(detail::DictEntry& entry, int insert_po
// range if the changed range straddles over remap_end.
if ( Remapping() && insert_position <= remap_end && remap_end < last_affected_position )
{ //[i,j] range changed. if map_end in between. then possibly old entry pushed down across
//map_end.
// map_end.
remap_end = last_affected_position; // adjust to j on the conservative side.
}
@ -1498,7 +1498,7 @@ void Dictionary::Remap()
if ( ! table[remap_end].Empty() && Remap(remap_end) )
left--;
else //< successful Remap may increase remap_end in the case of SizeUp due to insert. if so,
//remap_end need to be worked on again.
// remap_end need to be worked on again.
remap_end--;
}
if ( remap_end < 0 )