diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-10-04 14:42:28 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-10-07 15:20:41 +0200 |
commit | 0fc0d9118b5e525fa582de0286c8e83bb0da4e16 (patch) | |
tree | 23acbc464d5f15ef16432fc9277de3a4a8abcb9d /src/buildtool/execution_api/local/local_api.hpp | |
parent | e5a6474d0b2a41586b1c7ead20f2098c8dc977e2 (diff) | |
download | justbuild-0fc0d9118b5e525fa582de0286c8e83bb0da4e16.tar.gz |
Disable misc-no-recursion check
...since we use recursion for trees a lot, but skip this check manually.
Diffstat (limited to 'src/buildtool/execution_api/local/local_api.hpp')
-rw-r--r-- | src/buildtool/execution_api/local/local_api.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/buildtool/execution_api/local/local_api.hpp b/src/buildtool/execution_api/local/local_api.hpp index 7ba26b3d..2302cb5c 100644 --- a/src/buildtool/execution_api/local/local_api.hpp +++ b/src/buildtool/execution_api/local/local_api.hpp @@ -79,7 +79,7 @@ class LocalApi final : public IExecutionApi { properties}}; } - // NOLINTNEXTLINE(misc-no-recursion,google-default-arguments) + // NOLINTNEXTLINE(google-default-arguments) [[nodiscard]] auto RetrieveToPaths( std::vector<Artifact::ObjectInfo> const& artifacts_info, std::vector<std::filesystem::path> const& output_paths, @@ -154,7 +154,6 @@ class LocalApi final : public IExecutionApi { }); } - // NOLINTNEXTLINE(misc-no-recursion) [[nodiscard]] auto RetrieveToCas( std::vector<Artifact::ObjectInfo> const& artifacts_info, IExecutionApi const& api) const noexcept -> bool final { |