summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
Diffstat (limited to 'idlc')
-rw-r--r--idlc/source/options.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/idlc/source/options.cxx b/idlc/source/options.cxx
index 04db926dad0d..4f49cd202de4 100644
--- a/idlc/source/options.cxx
+++ b/idlc/source/options.cxx
@@ -227,7 +227,7 @@ bool Options::initOptions(std::vector< std::string > & rArgs)
{
case 'O':
{
- if (!((++first != last) && ((*first)[0] != '-')))
+ if ((++first == last) || ((*first)[0] == '-'))
{
return badOption("invalid", option);
}
@@ -237,7 +237,7 @@ bool Options::initOptions(std::vector< std::string > & rArgs)
}
case 'M':
{
- if (!((++first != last) && ((*first)[0] != '-')))
+ if ((++first == last) || ((*first)[0] == '-'))
{
return badOption("invalid", option);
}
@@ -247,7 +247,7 @@ bool Options::initOptions(std::vector< std::string > & rArgs)
}
case 'I':
{
- if (!((++first != last) && ((*first)[0] != '-')))
+ if ((++first == last) || ((*first)[0] == '-'))
{
return badOption("invalid", option);
}
@@ -283,7 +283,7 @@ bool Options::initOptions(std::vector< std::string > & rArgs)
}
case 'D':
{
- if (!((++first != last) && ((*first)[0] != '-')))
+ if ((++first == last) || ((*first)[0] == '-'))
{
return badOption("invalid", option);
}