From 544c4b37845193b42bcde2024ca6e6c08102091c Mon Sep 17 00:00:00 2001 From: "Matthias Huetsch [mhu]" Date: Fri, 4 Feb 2011 14:13:43 +0100 Subject: #i115784# registry/tools: fix unreachable break statement after return. --- registry/tools/checksingleton.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'registry/tools') diff --git a/registry/tools/checksingleton.cxx b/registry/tools/checksingleton.cxx index e4fc39449e37..c2717221c49d 100644 --- a/registry/tools/checksingleton.cxx +++ b/registry/tools/checksingleton.cxx @@ -161,11 +161,11 @@ bool Options_Impl::initOptions_Impl(std::vector< std::string > & rArgs) return badOption("invalid", option.c_str()); } return printUsage(); - break; + // break; // unreachable } default: return badOption("unknown", option.c_str()); - break; + // break; // unreachable } } return true; -- cgit