Skip to content

Commit

Permalink
Include <optional> in multibyte split. (#10385)
Browse files Browse the repository at this point in the history
#10150 broke compiler support for GCC 11 (built locally) because it was missing `#include <optional>` in a couple files. This fixes it. cc: @cwharris

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - Robert Maynard (https://github.com/robertmaynard)
  - Karthikeyan (https://github.com/karthikeyann)

URL: #10385
  • Loading branch information
bdice authored Mar 2, 2022
1 parent b4d262d commit fbac0ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions cpp/include/cudf/io/text/multibyte_split.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <rmm/mr/device/device_memory_resource.hpp>

#include <memory>
#include <optional>

namespace cudf {
namespace io {
Expand Down
1 change: 1 addition & 0 deletions cpp/src/io/text/multibyte_split.cu
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
#include <cub/block/block_scan.cuh>

#include <memory>
#include <optional>

namespace {

Expand Down

0 comments on commit fbac0ac

Please sign in to comment.