Skip to content

Commit

Permalink
remove move
Browse files Browse the repository at this point in the history
  • Loading branch information
vuule committed Feb 26, 2025
1 parent 084ea05 commit 4b45a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/io/functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ std::vector<std::unique_ptr<cudf::io::datasource>> make_datasources(source_info
sources.reserve(source_tasks.size());
std::transform(
source_tasks.begin(), source_tasks.end(), std::back_inserter(sources), [](auto& task) {
return std::move(task.get());
return task.get();
});
return sources;
}
Expand Down

0 comments on commit 4b45a8f

Please sign in to comment.