mirror of
https://github.com/NixOS/nix.git
synced 2025-11-10 20:46:01 +01:00
libcmd/repl: Make AbstractNixRepl::create respect its store argument
The only reference (according to clangd) to this function also uses `openStore`, so this is a no-op.
This commit is contained in:
parent
bfc05d2e3b
commit
8066e4b0c3
1 changed files with 1 additions and 1 deletions
|
|
@ -839,7 +839,7 @@ std::unique_ptr<AbstractNixRepl> AbstractNixRepl::create(
|
||||||
{
|
{
|
||||||
return std::make_unique<NixRepl>(
|
return std::make_unique<NixRepl>(
|
||||||
lookupPath,
|
lookupPath,
|
||||||
openStore(),
|
std::move(store),
|
||||||
state,
|
state,
|
||||||
getValues
|
getValues
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue