Skip to content

Commit

Permalink
change int32 to size-type
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwendt committed Feb 15, 2024
1 parent 1645f7c commit f840c61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ std::unique_ptr<column> make_strings_column(IndexPairIterator begin,
};
thrust::for_each_n(rmm::exec_policy(stream),
thrust::make_zip_iterator(
thrust::make_tuple(begin, offsets_view.template begin<int32_t>())),
thrust::make_tuple(begin, offsets_view.template begin<size_type>())),
strings_count,
copy_chars);
return chars_data;
Expand Down

0 comments on commit f840c61

Please sign in to comment.