From: Guilherme Maciel Ferreira Date: Thu, 21 Jul 2011 00:13:29 +0000 (-0300) Subject: Fixed the return statement, the method has the return statement in the correct place X-Git-Tag: v1.1^2~53 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=a34620464b15e410ad28e11ec992cf979622b779;p=pingcheck Fixed the return statement, the method has the return statement in the correct place --- 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; } /**