From 01e93c916f804ea5ddec149f6a8343f5e3ba3a2b Mon Sep 17 00:00:00 2001 From: ckormanyos Date: Mon, 14 Oct 2024 10:39:36 +0200 Subject: [PATCH] Handle tidy messages --- examples/example009_timed_mul.cpp | 2 +- examples/example009a_timed_mul_4_by_4.cpp | 2 +- examples/example009b_timed_mul_8_by_8.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/example009_timed_mul.cpp b/examples/example009_timed_mul.cpp index acf31c9..82267ef 100644 --- a/examples/example009_timed_mul.cpp +++ b/examples/example009_timed_mul.cpp @@ -94,7 +94,7 @@ auto ::math::wide_integer::example009_timed_mul() -> bool stopwatch_type my_stopwatch { }; - while(stopwatch_type::elapsed_time(my_stopwatch) < static_cast(6.0L)) + while(stopwatch_type::elapsed_time(my_stopwatch) < static_cast(6.0L)) // NOLINT(cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers) { local_timed_mul::local_a().at(index) * local_timed_mul::local_b().at(index); diff --git a/examples/example009a_timed_mul_4_by_4.cpp b/examples/example009a_timed_mul_4_by_4.cpp index 0264e00..a5e6d04 100644 --- a/examples/example009a_timed_mul_4_by_4.cpp +++ b/examples/example009a_timed_mul_4_by_4.cpp @@ -92,7 +92,7 @@ auto ::math::wide_integer::example009a_timed_mul_4_by_4() -> bool stopwatch_type my_stopwatch { }; - while(stopwatch_type::elapsed_time(my_stopwatch) < static_cast(6.0L)) + while(stopwatch_type::elapsed_time(my_stopwatch) < static_cast(6.0L)) // NOLINT(cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers) { local_timed_mul_4_by_4::local_a().at(index + 0U) * local_timed_mul_4_by_4::local_b().at(index + 0U); local_timed_mul_4_by_4::local_a().at(index + 1U) * local_timed_mul_4_by_4::local_b().at(index + 1U); diff --git a/examples/example009b_timed_mul_8_by_8.cpp b/examples/example009b_timed_mul_8_by_8.cpp index c9622b6..31d6405 100644 --- a/examples/example009b_timed_mul_8_by_8.cpp +++ b/examples/example009b_timed_mul_8_by_8.cpp @@ -92,7 +92,7 @@ auto ::math::wide_integer::example009b_timed_mul_8_by_8() -> bool stopwatch_type my_stopwatch { }; - while(stopwatch_type::elapsed_time(my_stopwatch) < static_cast(6.0L)) + while(stopwatch_type::elapsed_time(my_stopwatch) < static_cast(6.0L)) // NOLINT(cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers) { local_timed_mul_8_by_8::local_a().at(index + 0U) * local_timed_mul_8_by_8::local_b().at(index + 0U); local_timed_mul_8_by_8::local_a().at(index + 1U) * local_timed_mul_8_by_8::local_b().at(index + 1U);