Skip to content

Commit

Permalink
Handle tidy messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Oct 14, 2024
1 parent 245edf4 commit 01e93c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/example009_timed_mul.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ auto ::math::wide_integer::example009_timed_mul() -> bool

stopwatch_type my_stopwatch { };

while(stopwatch_type::elapsed_time<float>(my_stopwatch) < static_cast<float>(6.0L))
while(stopwatch_type::elapsed_time<float>(my_stopwatch) < static_cast<float>(6.0L)) // NOLINT(cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers)
{
local_timed_mul::local_a().at(index) * local_timed_mul::local_b().at(index);

Expand Down
2 changes: 1 addition & 1 deletion examples/example009a_timed_mul_4_by_4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ auto ::math::wide_integer::example009a_timed_mul_4_by_4() -> bool

stopwatch_type my_stopwatch { };

while(stopwatch_type::elapsed_time<float>(my_stopwatch) < static_cast<float>(6.0L))
while(stopwatch_type::elapsed_time<float>(my_stopwatch) < static_cast<float>(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);
Expand Down
2 changes: 1 addition & 1 deletion examples/example009b_timed_mul_8_by_8.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ auto ::math::wide_integer::example009b_timed_mul_8_by_8() -> bool

stopwatch_type my_stopwatch { };

while(stopwatch_type::elapsed_time<float>(my_stopwatch) < static_cast<float>(6.0L))
while(stopwatch_type::elapsed_time<float>(my_stopwatch) < static_cast<float>(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);
Expand Down

0 comments on commit 01e93c9

Please sign in to comment.