Skip to content

Commit

Permalink
Make operator() const.
Browse files Browse the repository at this point in the history
Co-authored-by: Vyas Ramasubramani <[email protected]>
  • Loading branch information
bdice and vyasr authored Apr 20, 2022
1 parent 0a17018 commit 0fcbb23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/io/parquet/chunk_dict.cu
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ struct equality_functor {
template <typename T>
struct hash_functor {
column_device_view const& col;
__device__ auto operator()(size_type idx)
__device__ auto operator()(size_type idx) const
{
return cudf::detail::MurmurHash3_32<T>{}(col.element<T>(idx));
}
Expand Down

0 comments on commit 0fcbb23

Please sign in to comment.