From 03176b45ade10ab6bf5265179fc6cd6d9c5162b0 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 2 Nov 2014 12:02:29 -0500 Subject: [PATCH] CLI - Forgot to commit the change declaring the default argument for ::addArg. --- src/CLI.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CLI.h b/src/CLI.h index f653ca059..618857b90 100644 --- a/src/CLI.h +++ b/src/CLI.h @@ -78,7 +78,7 @@ public: const std::string dump (const std::string& title = "CLI Parser") const; private: - void addArg (const std::string&); + void addArg (const std::string&, bool first = false); void aliasExpansion (); void findOverrides (); void categorize ();