Skip to content

Commit

Permalink
Clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
codereport committed Nov 24, 2021
1 parent b2179a5 commit dbc8b6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/groupby/sort/group_single_pass_reduction_util.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ struct group_reduction_functor<K, T, std::enable_if_t<is_group_reduction_support
validity.begin(),
thrust::logical_or<bool>{});

auto [null_mask, null_count] = cudf::detail::valid_if(
validity.begin(), validity.end(), thrust::identity{}, stream, mr);
auto [null_mask, null_count] =
cudf::detail::valid_if(validity.begin(), validity.end(), thrust::identity{}, stream, mr);
result->set_null_mask(std::move(null_mask), null_count);
}
return result;
Expand Down

0 comments on commit dbc8b6d

Please sign in to comment.