Skip to content

Commit e82a35b

Browse files
author
Rafał Hibner
committed
fix namespace
1 parent 4c83958 commit e82a35b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cpp/src/arrow/acero/pipe_node.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424

2525
namespace arrow {
2626

27-
using internal::checked_cast;
28-
27+
using arrow::util::Mutex;
2928
using compute::Ordering;
29+
using internal::checked_cast;
3030

3131
namespace acero {
3232
class Pipe;
@@ -117,7 +117,7 @@ class ARROW_ACERO_EXPORT Pipe {
117117
PipeSource* sync_node_{NULLPTR};
118118
// backpressure
119119
std::unordered_map<PipeSource*, SourceState> state_;
120-
util::Mutex mutex_;
120+
Mutex mutex_;
121121
std::atomic_size_t paused_count_{0};
122122
std::unique_ptr<BackpressureControl> ctrl_;
123123
// stopProducing

0 commit comments

Comments
 (0)