diff options
author | Matthias Huetsch [mhu] <matthias.huetsch@oracle.com> | 2011-02-21 09:54:19 +0100 |
---|---|---|
committer | Matthias Huetsch [mhu] <matthias.huetsch@oracle.com> | 2011-02-21 09:54:19 +0100 |
commit | 5da06c75bb7a7c3108d3415149293a0536f0a18a (patch) | |
tree | 2cd12a7166c77f55f81902d590377d93ea3271bd /idlc | |
parent | e0fa87c7c348430e3f2df2eb1529c92c617bbd99 (diff) |
#i115784# idlc: Fix unreachable "return <result>; break;" statements.
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/source/options.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idlc/source/options.cxx b/idlc/source/options.cxx index 42b97237e34f..1afc3b4765b9 100644 --- a/idlc/source/options.cxx +++ b/idlc/source/options.cxx @@ -309,7 +309,7 @@ bool Options::initOptions(std::vector< std::string > & rArgs) throw(IllegalArgum (void) fprintf(stdout, "%s", prepareHelp().getStr()); return (false); } - break; + // break; // Unreachable } case 's': { |