Skip to content

Commit

Permalink
make explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroshade committed Oct 22, 2024
1 parent ed50f25 commit fa401dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/c/bridge.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2540,7 +2540,7 @@ class AsyncRecordBatchIterator {
AsyncRecordBatchIterator(uint64_t queue_size, const DeviceMemoryMapper mapper)
: state_{std::make_shared<State>(queue_size, std::move(mapper))} {}

AsyncRecordBatchIterator(std::shared_ptr<State> state) : state_{std::move(state)} {}
explicit AsyncRecordBatchIterator(std::shared_ptr<State> state) : state_{std::move(state)} {}

const std::shared_ptr<Schema>& schema() const { return state_->schema_; }

Expand Down

0 comments on commit fa401dc

Please sign in to comment.