summaryrefslogtreecommitdiff
path: root/registry
diff options
context:
space:
mode:
authorMatthias Huetsch [mhu] <matthias.huetsch@oracle.com>2011-02-18 13:43:42 +0100
committerMatthias Huetsch [mhu] <matthias.huetsch@oracle.com>2011-02-18 13:43:42 +0100
commite0fa87c7c348430e3f2df2eb1529c92c617bbd99 (patch)
tree3085748326a02251335e18cf3f2a117b562227f8 /registry
parent544c4b37845193b42bcde2024ca6e6c08102091c (diff)
#i115784# registry: Fix unreachable "return <result>; break;" statements.
Diffstat (limited to 'registry')
-rw-r--r--registry/tools/regcompare.cxx4
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
}
}
}