Skip to content

Commit

Permalink
fixed broken libcudf api example
Browse files Browse the repository at this point in the history
  • Loading branch information
lamarrr committed Jan 16, 2025
1 parent 6707f57 commit 5bb0d98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/examples/strings/libcudf_apis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ std::unique_ptr<cudf::column> redact_strings(cudf::column_view const& names,

auto const last_initial_first = cudf::table_view({last_initial->view(), first});

auto result = cudf::strings::concatenate(last_initial_first, std::string(" "));
auto result = cudf::strings::concatenate(last_initial_first, std::string_view(" "));

cudaStreamSynchronize(0);

Expand Down

0 comments on commit 5bb0d98

Please sign in to comment.