diff options
author | Matthias Huetsch [mhu] <matthias.huetsch@oracle.com> | 2011-02-18 13:43:42 +0100 |
---|---|---|
committer | Matthias Huetsch [mhu] <matthias.huetsch@oracle.com> | 2011-02-18 13:43:42 +0100 |
commit | e0fa87c7c348430e3f2df2eb1529c92c617bbd99 (patch) | |
tree | 3085748326a02251335e18cf3f2a117b562227f8 | |
parent | 544c4b37845193b42bcde2024ca6e6c08102091c (diff) |
#i115784# registry: Fix unreachable "return <result>; break;" statements.
-rw-r--r-- | registry/tools/regcompare.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/registry/tools/regcompare.cxx b/registry/tools/regcompare.cxx index 3e415cec43fc..82941a5db2d5 100644 --- a/registry/tools/regcompare.cxx +++ b/registry/tools/regcompare.cxx @@ -253,12 +253,12 @@ bool Options_Impl::initOptions_Impl (std::vector< std::string > & rArgs) return badOption("invalid", (*first).c_str()); } return printUsage(); - break; + // break; // Unreachable } default: { return badOption("unknown", (*first).c_str()); - break; + // break; // Unreachable } } } |