Fixed the return statement, the method has the return statement in the correct place
authorGuilherme Maciel Ferreira <guilherme.maciel.ferreira@gmail.com>
Thu, 21 Jul 2011 00:13:29 +0000 (21:13 -0300)
committerGuilherme Maciel Ferreira <guilherme.maciel.ferreira@gmail.com>
Thu, 21 Jul 2011 00:13:29 +0000 (21:13 -0300)
src/config/configurationreader.cpp

index 855e583..3928b28 100644 (file)
@@ -396,14 +396,14 @@ bool ConfigurationReader::process_command_line(
                 run();
         store( parsed_opt, vm );
         notify( vm );
-
-        return true;
     }
     catch ( const std::exception &ex )
     {
         GlobalLogger.error() << ex.what() << endl;
         return false;
     }
+
+    return true;
 }
 
 /**