Skip to content

Commit

Permalink
Address clang-format modifications
Browse files Browse the repository at this point in the history
Signed-off-by: Shreyas Atre <shreyasatre16@gmail.com>
  • Loading branch information
SAtacker committed Feb 2, 2025
1 parent 2cba4bf commit d317925
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ namespace hpx::parallel::detail {
T max_val = std::abs(std::numeric_limits<T>::min());
std::size_t partition_size_lim = 0;
for (auto e = first; partition_size_lim < partition_size;
partition_size_lim++, e++)
partition_size_lim++, e++)
{
T temp_max_val = std::abs(static_cast<T>(*e));
if (max_val < temp_max_val)
Expand Down Expand Up @@ -121,7 +121,7 @@ namespace hpx::parallel::detail {
rfa += init;
std::size_t partition_size_lim = 0;
for (auto e = first; partition_size_lim < partition_size;
partition_size_lim++, e++)
partition_size_lim++, e++)
{
rfa += (*e);
}
Expand Down

0 comments on commit d317925

Please sign in to comment.