mirror of
https://github.com/NixOS/nix.git
synced 2025-12-08 10:01:01 +01:00
Drop bad std::move
Co-authored-by: Cole Helbling <cole.e.helbling@outlook.com>
This commit is contained in:
parent
a0fb93f09b
commit
5842d54cee
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ struct ExternalDerivationBuilder : DerivationBuilderImpl
|
|||
for (auto & system : handler.systems)
|
||||
if (params.drv.platform == system)
|
||||
return std::make_unique<ExternalDerivationBuilder>(
|
||||
store, std::move(miscMethods), std::move(params), std::move(handler));
|
||||
store, std::move(miscMethods), std::move(params), handler);
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue