Skip to content

Commit

Permalink
Handle clang-tidy messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Dec 13, 2023
1 parent 74c3292 commit 0bb1c84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions math/wide_integer/uintwide_t.h
Original file line number Diff line number Diff line change
Expand Up @@ -7534,7 +7534,7 @@
{
local_input_iterator_type non_const_first = first;

while(non_const_first != last)
while(non_const_first != last) // NOLINT(altera-id-dependent-backward-branch)
{
++non_const_first;
++input_distance;
Expand Down Expand Up @@ -7647,7 +7647,7 @@
{
local_input_iterator_type non_const_first = first;

while(non_const_first != last)
while(non_const_first != last) // NOLINT(altera-id-dependent-backward-branch)
{
++non_const_first;
++input_distance;
Expand Down

0 comments on commit 0bb1c84

Please sign in to comment.