Commit 417a978aba39f151830b8d3ccb62bf32cbdf0ad1
Committed by
Henry Schreiner
1 parent
7a85aa91
Add missing case to resolve -Wswitch-enum. (#392)
Showing
1 changed file
with
1 additions
and
0 deletions
include/CLI/App.hpp
| ... | ... | @@ -2598,6 +2598,7 @@ class App { |
| 2598 | 2598 | throw HorribleError("windows option parsed but missing! You should not see this"); |
| 2599 | 2599 | break; |
| 2600 | 2600 | case detail::Classifier::SUBCOMMAND: |
| 2601 | + case detail::Classifier::SUBCOMMAND_TERMINATOR: | |
| 2601 | 2602 | case detail::Classifier::POSITIONAL_MARK: |
| 2602 | 2603 | case detail::Classifier::NONE: |
| 2603 | 2604 | default: | ... | ... |