From 216d8bafa5024b292f57129e6ed9b988103f0614 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 2 Nov 2014 23:39:11 -0500 Subject: [PATCH] CLI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Relocated ::injectDefaults call to after ::findOverrides, and insert a call to ::applyOverりides. --- src/CLI.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/CLI.cpp b/src/CLI.cpp index 009f8697a..884536f53 100644 --- a/src/CLI.cpp +++ b/src/CLI.cpp @@ -337,8 +337,9 @@ void CLI::analyze (bool parse /* = true */) // Find argument types. aliasExpansion (); - injectDefaults (); findOverrides (); + applyOverrides (); + injectDefaults (); categorize (); if (parse)