Skip to content

Commit

Permalink
Add algorithm include in data_sink.hpp (#13068)
Browse files Browse the repository at this point in the history
`data_sink.hpp` uses `std::transform` but not does not include <algorithm>. This PR fixes that.

The missing include was surfaced by #13064.

Authors:
  - Allard Hendriksen (https://github.com/ahendriksen)

Approvers:
  - Bradley Dice (https://github.com/bdice)
  - David Wendt (https://github.com/davidwendt)
  - Nghia Truong (https://github.com/ttnghia)

URL: #13068
  • Loading branch information
ahendriksen authored Apr 5, 2023
1 parent da7fe2a commit 0cf8c91
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cpp/include/cudf/io/data_sink.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

#include <rmm/cuda_stream_view.hpp>

#include <algorithm>
#include <future>
#include <memory>
#include <string>
Expand Down

0 comments on commit 0cf8c91

Please sign in to comment.