Skip to content

Commit

Permalink
pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Jun 14, 2024
1 parent 0a39911 commit b203ea1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cpp/src/stream_compaction/distinct_count.cu
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,9 @@ cudf::size_type distinct_count(column_view const& input,
{
if (0 == input.size()) { return 0; }

if (input.null_count() == input.size()) { return static_cast<size_type>(null_handling == null_policy::INCLUDE); }
if (input.null_count() == input.size()) {
return static_cast<size_type>(null_handling == null_policy::INCLUDE);
}

auto count = detail::distinct_count(table_view{{input}}, null_equality::EQUAL, stream);

Expand Down

0 comments on commit b203ea1

Please sign in to comment.