diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-04-28 14:24:17 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-04-28 14:24:17 +0200 |
commit | d77d813017d9bb5c82040d4a7749f80582422d7e (patch) | |
tree | 39836070b4c38001e9c56f6d20eba62931239617 /src | |
parent | 660835da69464304fa772d9e354330ad4927de6e (diff) |
Shut up clang warning
Diffstat (limited to 'src')
-rw-r--r-- | src/nix/fmt.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nix/fmt.cc b/src/nix/fmt.cc index e5d44bd38..6f6a4a632 100644 --- a/src/nix/fmt.cc +++ b/src/nix/fmt.cc @@ -26,7 +26,8 @@ struct CmdFmt : SourceExprCommand { Strings getDefaultFlakeAttrPathPrefixes() override { return Strings{}; } - void run(ref<Store> store) { + void run(ref<Store> store) override + { auto evalState = getEvalState(); auto evalStore = getEvalStore(); |