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/other_tools/just_mr/setup_utils.cpp | |
parent | e8085c1c209e98a31c32e2032d02d620449006e4 (diff) | |
download | justbuild-6e74b1448bf8d94d73ef3134aa9e8bf36e51a2aa.tar.gz |
Enable bugprone-exception-escape check
Diffstat (limited to 'src/other_tools/just_mr/setup_utils.cpp')
-rw-r--r-- | src/other_tools/just_mr/setup_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/other_tools/just_mr/setup_utils.cpp b/src/other_tools/just_mr/setup_utils.cpp index 4aa710c5..777343f5 100644 --- a/src/other_tools/just_mr/setup_utils.cpp +++ b/src/other_tools/just_mr/setup_utils.cpp @@ -126,7 +126,7 @@ void DefaultReachableRepositories( auto ReadConfiguration( std::optional<std::filesystem::path> const& config_file_opt, - std::optional<std::filesystem::path> const& absent_file_opt) noexcept + std::optional<std::filesystem::path> const& absent_file_opt) -> std::shared_ptr<Configuration> { if (not config_file_opt) { Logger::Log(LogLevel::Error, "Cannot find repository configuration."); |