diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-06-02 18:25:32 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-06-02 18:25:32 +0000 |
commit | c664e68b87a3e9e41c4471276886da71793b2d85 (patch) | |
tree | 4588e89a54039765077433eb4406953b008e4872 /src/libutil/args.hh | |
parent | c502119fd3b9673e966d5c34ec42cbe18baa17b9 (diff) |
Fix to-base --type handler to correctly set std::optional flag
Now that we have a separate flag function, also describe why it is
optional.
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 fc8f82af5..f2315f67a 100644 --- a/src/libutil/args.hh +++ b/src/libutil/args.hh @@ -85,6 +85,7 @@ protected: Handler handler; static Flag mkHashTypeFlag(std::string && longName, HashType * ht); + static Flag mkHashTypeOptFlag(std::string && longName, std::optional<HashType> * oht); }; std::map<std::string, Flag::ptr> longFlags; |