From 417a978aba39f151830b8d3ccb62bf32cbdf0ad1 Mon Sep 17 00:00:00 2001 From: Andrew Hardin Date: Tue, 7 Jan 2020 21:32:41 -0700 Subject: [PATCH] Add missing case to resolve -Wswitch-enum. (#392) --- include/CLI/App.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/CLI/App.hpp b/include/CLI/App.hpp index c006fb6c..7967afc6 100644 --- a/include/CLI/App.hpp +++ b/include/CLI/App.hpp @@ -2598,6 +2598,7 @@ class App { throw HorribleError("windows option parsed but missing! You should not see this"); break; case detail::Classifier::SUBCOMMAND: + case detail::Classifier::SUBCOMMAND_TERMINATOR: case detail::Classifier::POSITIONAL_MARK: case detail::Classifier::NONE: default: