diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-04-19 14:41:06 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-12-05 20:41:44 +0100 |
commit | 3b9c9d34e5ede028860e919d72cc5ae33dd95443 (patch) | |
tree | a79aee20f9681aa29d9041a6bbcb5f689e7b8b68 /src | |
parent | 80ab95315dcd50183bf981d8eefde82435b65124 (diff) |
Shut up clang warning
(cherry picked from commit 3392f1b77869269580b58e4931b7a79f44799ce0)
Diffstat (limited to 'src')
-rw-r--r-- | src/nix/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/main.cc b/src/nix/main.cc index dcf351cf4..5454f4b34 100644 --- a/src/nix/main.cc +++ b/src/nix/main.cc @@ -104,7 +104,7 @@ struct NixArgs : virtual MultiCommand, virtual MixCommonArgs "--help-config' for a list of configuration settings.\n"; } - void printHelp(const string & programName, std::ostream & out) + void printHelp(const string & programName, std::ostream & out) override { MultiCommand::printHelp(programName, out); |