Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
AdhocMan committed Apr 9, 2024
1 parent 1bc1807 commit 23e9659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbor/communication/distributed_for_each.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void distributed_for_each(FUNC&& func,
arg_tuple,
ranges);

for (std::size_t step = 0; step < distributed.size(); ++step) { std::apply(func, ranges); }
for (int step = 0; step < distributed.size(); ++step) { std::apply(func, ranges); }
return;
}

Expand Down

0 comments on commit 23e9659

Please sign in to comment.