From a34620464b15e410ad28e11ec992cf979622b779 Mon Sep 17 00:00:00 2001 From: Guilherme Maciel Ferreira Date: Wed, 20 Jul 2011 21:13:29 -0300 Subject: [PATCH] Fixed the return statement, the method has the return statement in the correct place --- src/config/configurationreader.cpp | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/configurationreader.cpp b/src/config/configurationreader.cpp index 855e583..3928b28 100644 --- a/src/config/configurationreader.cpp +++ b/src/config/configurationreader.cpp @@ -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; } /** -- 1.7.1