diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-10-02 16:03:45 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-10-07 13:37:39 +0200 |
commit | 6e74b1448bf8d94d73ef3134aa9e8bf36e51a2aa (patch) | |
tree | 535d3c7bdf73251379cff7b541d7e50c3beccca7 /src/buildtool/build_engine/target_map/result_map.hpp | |
parent | e8085c1c209e98a31c32e2032d02d620449006e4 (diff) | |
download | justbuild-6e74b1448bf8d94d73ef3134aa9e8bf36e51a2aa.tar.gz |
Enable bugprone-exception-escape check
Diffstat (limited to 'src/buildtool/build_engine/target_map/result_map.hpp')
-rw-r--r-- | src/buildtool/build_engine/target_map/result_map.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/buildtool/build_engine/target_map/result_map.hpp b/src/buildtool/build_engine/target_map/result_map.hpp index 9d7787bc..b73cdd48 100644 --- a/src/buildtool/build_engine/target_map/result_map.hpp +++ b/src/buildtool/build_engine/target_map/result_map.hpp @@ -131,8 +131,7 @@ class ResultTargetMap { return all_exports; } - [[nodiscard]] auto ConfiguredTargetsGraph() const noexcept - -> nlohmann::json { + [[nodiscard]] auto ConfiguredTargetsGraph() const -> nlohmann::json { auto result = nlohmann::json::object(); for (auto const& i : targets_) { for (auto const& it : i) { |