Skip to content

Commit 3d034fb

Browse files
author
Rafał Hibner
committed
Lint
1 parent f549fb9 commit 3d034fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/arrow/acero/concurrent_queue_internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class ConcurrentQueue {
7777

7878
size_t SizeUnlocked() const { return queue_.size(); }
7979

80-
T PopUnlocked(std::unique_lock<std::mutex> &lock) {
80+
T PopUnlocked(std::unique_lock<std::mutex>& lock) {
8181
cond_.wait(lock, [&] { return !queue_.empty(); });
8282
auto item = queue_.front();
8383
queue_.pop();

0 commit comments

Comments
 (0)