Skip to content

Commit

Permalink
try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lithomas1 committed Jun 13, 2024
1 parent 9150a6c commit b1951d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/cudf/cudf/_lib/pylibcudf/io/types.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,12 @@ cdef class SinkInfo:
"ascii",
}:
raise NotImplementedError(f"Unsupported encoding {s.encoding}")
sink = unique_ptr[data_sink](new iobase_data_sink(s.buffer))
sink = move(unique_ptr[data_sink](new iobase_data_sink(s.buffer)))
else:
sink = unique_ptr[data_sink](new iobase_data_sink(s))
sink = move(unique_ptr[data_sink](new iobase_data_sink(s)))

self.sink_storage.push_back(
sink
move(sink)
)
data_sinks.push_back(self.sink_storage.back().get())
self.c_obj = sink_info(data_sinks)
Expand Down

0 comments on commit b1951d0

Please sign in to comment.