mirror of
https://github.com/NixOS/nix.git
synced 2025-11-11 04:56:01 +01:00
Remove a repeated std::move in a for loop
This commit is contained in:
parent
f05fefcd03
commit
4bf6af7b55
1 changed files with 1 additions and 1 deletions
|
|
@ -1179,7 +1179,7 @@ static void prim_derivationStrict(EvalState & state, const Pos & pos, Value * *
|
||||||
drv.outputs.insert_or_assign(i, DerivationOutput {
|
drv.outputs.insert_or_assign(i, DerivationOutput {
|
||||||
.output = DerivationOutputCAFloating {
|
.output = DerivationOutputCAFloating {
|
||||||
.method = ingestionMethod,
|
.method = ingestionMethod,
|
||||||
.hashType = std::move(ht),
|
.hashType = ht,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue