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.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/execution_engine/executor/executor.hpp b/src/buildtool/execution_engine/executor/executor.hpp
index 3a416cfb..66790696 100644
--- a/src/buildtool/execution_engine/executor/executor.hpp
+++ b/src/buildtool/execution_engine/executor/executor.hpp
@@ -951,13 +951,13 @@ class Rebuilder {
gsl::not_null<IExecutionApi::Ptr> const api_cached_;
std::chrono::milliseconds timeout_;
mutable std::mutex m_;
- mutable std::vector<std::string> cache_misses_{};
+ mutable std::vector<std::string> cache_misses_;
mutable std::unordered_map<
std::string,
std::unordered_map<
std::string,
std::pair<Artifact::ObjectInfo, Artifact::ObjectInfo>>>
- flaky_actions_{};
+ flaky_actions_;
[[nodiscard]] auto DetectFlakyAction(
IExecutionResponse::Ptr const& response,