diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-01-24 13:07:03 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-01-24 13:07:52 +0100 |
commit | 2b8ca654b058cf18101a5243090706be97930275 (patch) | |
tree | c3a101d91a1c8180b293abd095c666b8caafbfe8 /src/nix/command.hh | |
parent | cd973fa07f4939b6f21b7254c795e347d31fce74 (diff) |
HandleLockFile -> LockFileMode
Diffstat (limited to 'src/nix/command.hh')
-rw-r--r-- | src/nix/command.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix/command.hh b/src/nix/command.hh index fc69d7154..08fa0c5fa 100644 --- a/src/nix/command.hh +++ b/src/nix/command.hh @@ -16,7 +16,7 @@ struct Pos; class Store; namespace flake { -enum HandleLockFile : unsigned int; +enum LockFileMode : unsigned int; } /* A command that requires a Nix store. */ @@ -49,7 +49,7 @@ struct MixFlakeOptions : virtual Args MixFlakeOptions(); - flake::HandleLockFile getLockFileMode(); + flake::LockFileMode getLockFileMode(); }; struct SourceExprCommand : virtual Args, EvalCommand, MixFlakeOptions |