From c5ec55c9f5ced49f0999ae7ae55643c2b7bc9cfd Mon Sep 17 00:00:00 2001 From: Guillaume Maudoux Date: Tue, 8 Oct 2024 01:55:02 +0200 Subject: [PATCH] nit: clang-tidy --- src/nix/derivation-instantiate.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/nix/derivation-instantiate.cc b/src/nix/derivation-instantiate.cc index 5c3caf060..30469d258 100644 --- a/src/nix/derivation-instantiate.cc +++ b/src/nix/derivation-instantiate.cc @@ -21,8 +21,7 @@ static nlohmann::json storePathSetToJSON(const StorePaths & paths, Store & store } // TODO deduplicate with other code also setting such out links. -static void -createOutLinks(const std::filesystem::path & outLink, const StorePaths & derivations, LocalFSStore & store) +static void createOutLinks(const std::filesystem::path & outLink, const StorePaths & derivations, LocalFSStore & store) { for (const auto & [_i, drv] : enumerate(derivations)) { auto i = _i;