We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49473df commit 04b9905Copy full SHA for 04b9905
1 file changed
cpp/src/arrow/util/async_generator.h
@@ -944,13 +944,13 @@ class PushGenerator {
944
945
bool Push(Result<T> result) override {
946
auto lock = State::mutex.Lock();
947
- DoHandle(*this);
+ DoHandle do_handle(*this);
948
return State::PushUnlocked(std::move(result), std::move(lock));
949
}
950
951
Future<T> Pop() override {
952
953
954
return State::PopUnlocked();
955
956
0 commit comments