diff options
author | Matthias Huetsch [mhu] <matthias.huetsch@oracle.com> | 2011-02-04 14:13:43 +0100 |
---|---|---|
committer | Matthias Huetsch [mhu] <matthias.huetsch@oracle.com> | 2011-02-04 14:13:43 +0100 |
commit | 544c4b37845193b42bcde2024ca6e6c08102091c (patch) | |
tree | f95283ec3695fface4f4dc40996a61b9a277e2f1 /registry | |
parent | 1dd0eb26bbb9db39bcc34d87a758caf36987cd05 (diff) |
#i115784# registry/tools: fix unreachable break statement after return.
Diffstat (limited to 'registry')
-rw-r--r-- | registry/tools/checksingleton.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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; |