diff options
Diffstat (limited to 'src/nix/command.hh')
-rw-r--r-- | src/nix/command.hh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nix/command.hh b/src/nix/command.hh index 27c3ab7f2..5bf391d93 100644 --- a/src/nix/command.hh +++ b/src/nix/command.hh @@ -18,9 +18,8 @@ class Store; /* A command that require a Nix store. */ struct StoreCommand : virtual Command { - bool reserveSpace; - StoreCommand(bool reserveSpace = true) - : reserveSpace(reserveSpace) { }; + std::string storeUri; + StoreCommand(); void run() override; virtual void run(ref<Store>) = 0; }; |