From 3dbfa4dd876286e8d02061e735d4e5ee55622c92 Mon Sep 17 00:00:00 2001 From: Igor Nikonov Date: Fri, 27 Sep 2024 16:53:20 +0000 Subject: [PATCH] Fix non-linux builds --- src/Processors/Executors/ExecutorTasks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Processors/Executors/ExecutorTasks.cpp b/src/Processors/Executors/ExecutorTasks.cpp index b9ccc35c5bf..abc450777c7 100644 --- a/src/Processors/Executors/ExecutorTasks.cpp +++ b/src/Processors/Executors/ExecutorTasks.cpp @@ -170,7 +170,7 @@ void ExecutorTasks::init(size_t num_threads_, size_t use_threads_, bool profile_ } } -void ExecutorTasks::fill(Queue & queue, Queue & async_queue) +void ExecutorTasks::fill(Queue & queue, [[maybe_unused]] Queue & async_queue) { std::lock_guard lock(mutex);