mirror of
https://github.com/NixOS/nix.git
synced 2025-12-08 18:11:02 +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)
|
for (auto & system : handler.systems)
|
||||||
if (params.drv.platform == system)
|
if (params.drv.platform == system)
|
||||||
return std::make_unique<ExternalDerivationBuilder>(
|
return std::make_unique<ExternalDerivationBuilder>(
|
||||||
store, std::move(miscMethods), std::move(params), std::move(handler));
|
store, std::move(miscMethods), std::move(params), handler);
|
||||||
}
|
}
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue