diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-02-07 20:44:56 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2021-02-07 20:44:56 +0100 |
commit | 37352aa7e19e0bfebbd0c32985cbf79a83508538 (patch) | |
tree | a3c5086e8ad1945a37a233f1d759cb37f1715efc /src/libutil/args.hh | |
parent | 480426a364f09e7992230b32f2941a09fb52d729 (diff) |
Support --no-net for backwards compatibility
Diffstat (limited to 'src/libutil/args.hh')
-rw-r--r-- | src/libutil/args.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/args.hh b/src/libutil/args.hh index 42d8515ef..88f068087 100644 --- a/src/libutil/args.hh +++ b/src/libutil/args.hh @@ -97,6 +97,7 @@ protected: typedef std::shared_ptr<Flag> ptr; std::string longName; + std::set<std::string> aliases; char shortName = 0; std::string description; std::string category; |