Skip to content

Commit

Permalink
Update comparator type to avoid references.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Dec 4, 2024
1 parent 1716df6 commit 0c2b6b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/libcugraph_etl/src/renumbering.cu
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ __global__ static void select_unrenumber_string(str_hash_value* idx_to_col_row,
}

struct struct_sort_descending {
__host__ __device__ bool operator()(str_hash_value& a, str_hash_value& b)
__host__ __device__ bool operator()(str_hash_value a, str_hash_value b)
{
return (a.count_ > b.count_);
}
Expand Down

0 comments on commit 0c2b6b0

Please sign in to comment.