From 0bb1c847158253da95959712b0112ce949aae4e1 Mon Sep 17 00:00:00 2001 From: Christopher Kormanyos Date: Wed, 13 Dec 2023 07:11:04 +0100 Subject: [PATCH] Handle clang-tidy messages --- math/wide_integer/uintwide_t.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/math/wide_integer/uintwide_t.h b/math/wide_integer/uintwide_t.h index 9575794..1422ddc 100644 --- a/math/wide_integer/uintwide_t.h +++ b/math/wide_integer/uintwide_t.h @@ -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; @@ -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;