Skip to content

Commit

Permalink
Disable one remaining clang-tidy message
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Feb 26, 2023
1 parent 9b517e5 commit 2e93a96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion concurrency/parallel_for.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
auto i2 = (std::min)(static_cast<index_type>(start + slice), end);

for(auto i = static_cast<index_type>(0U);
static_cast<index_type>(i + static_cast<index_type>(INT8_C(1))) < static_cast<index_type>(number_of_threads);
static_cast<index_type>(i + static_cast<index_type>(INT8_C(1))) < static_cast<index_type>(number_of_threads); // NOLINT(altera-id-dependent-backward-branch)
++i)
{
pool.emplace_back(launch_range, i1, i2);
Expand Down

0 comments on commit 2e93a96

Please sign in to comment.