summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_engine/executor/executor.hpp
diff options
context:
space:
mode:
authorMaksim Denisov <denisov.maksim@huawei.com>2024-10-02 16:03:45 +0200
committerMaksim Denisov <denisov.maksim@huawei.com>2024-10-07 13:37:39 +0200
commit6e74b1448bf8d94d73ef3134aa9e8bf36e51a2aa (patch)
tree535d3c7bdf73251379cff7b541d7e50c3beccca7 /src/buildtool/execution_engine/executor/executor.hpp
parente8085c1c209e98a31c32e2032d02d620449006e4 (diff)
downloadjustbuild-6e74b1448bf8d94d73ef3134aa9e8bf36e51a2aa.tar.gz
Enable bugprone-exception-escape check
Diffstat (limited to 'src/buildtool/execution_engine/executor/executor.hpp')
-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 0018cafc..3a416cfb 100644
--- a/src/buildtool/execution_engine/executor/executor.hpp
+++ b/src/buildtool/execution_engine/executor/executor.hpp
@@ -934,7 +934,7 @@ class Rebuilder {
logger, artifact, context_.repo_config, *context_.apis);
}
- [[nodiscard]] auto DumpFlakyActions() const noexcept -> nlohmann::json {
+ [[nodiscard]] auto DumpFlakyActions() const -> nlohmann::json {
std::unique_lock lock{m_};
auto actions = nlohmann::json::object();
for (auto const& [action_id, outputs] : flaky_actions_) {