Skip to content

Commit 3c0522e

Browse files
author
Rafał Hibner
committed
Fix Lint
1 parent 879cc49 commit 3c0522e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

cpp/src/arrow/acero/util_test.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,8 @@ class BackpressureTestExecNode : public ExecNode {
246246

247247
class TestBackpressureControl : public BackpressureControl {
248248
public:
249-
TestBackpressureControl(BackpressureTestExecNode* testNode) : testNode(testNode) {}
249+
explicit TestBackpressureControl(BackpressureTestExecNode* testNode)
250+
: testNode(testNode) {}
250251
virtual void Pause() { testNode->PauseProducing(nullptr, 0); }
251252
virtual void Resume() { testNode->ResumeProducing(nullptr, 0); }
252253
BackpressureTestExecNode* testNode;

0 commit comments

Comments
 (0)