1
1
Fork 0
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:
Eelco Dolstra 2025-06-11 10:17:58 +02:00 committed by Cole Helbling
parent a0fb93f09b
commit 5842d54cee

View file

@ -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 {};
}