summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_engine/executor
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/execution_engine/executor')
-rw-r--r--src/buildtool/execution_engine/executor/executor.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/execution_engine/executor/executor.hpp b/src/buildtool/execution_engine/executor/executor.hpp
index 6983a4ac..db204fe6 100644
--- a/src/buildtool/execution_engine/executor/executor.hpp
+++ b/src/buildtool/execution_engine/executor/executor.hpp
@@ -682,7 +682,7 @@ class ExecutorImpl {
}
auto const has_err = response->HasStdErr();
auto const has_out = response->HasStdOut();
- auto build_message = [has_err, has_out, &logger, &action, &response]() {
+ auto build_message = [has_err, has_out, &action, &response]() {
using namespace std::string_literals;
auto message = ""s;
bool has_both = has_err and has_out;