Skip to content

Commit

Permalink
updating return type
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Wilson <knobby@burntsheep.com>
  • Loading branch information
hyperbolic2346 committed Dec 20, 2023
1 parent 7d12f40 commit 4691bfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/cpp/src/row_conversion.cu
Original file line number Diff line number Diff line change
Expand Up @@ -2467,7 +2467,7 @@ std::unique_ptr<table> convert_from_rows(lists_column_view const& input,
std::vector<char*> string_data_col_ptrs;
for (auto& col_string_lengths : string_lengths) {
device_uvector<size_type> output_string_offsets(num_rows + 1, stream, mr);
auto tmp = cuda::proclaim_return_type<int32_t>(
auto tmp = cuda::proclaim_return_type<size_type>(
[num_rows, col_string_lengths] __device__(auto const& i) {
return i < num_rows ? col_string_lengths[i] : 0;
});
Expand Down

0 comments on commit 4691bfb

Please sign in to comment.