summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2020-06-05 12:02:36 -0500
committerFred Hornsey <hornseyf@objectcomputing.com>2020-06-05 12:02:36 -0500
commit757eb4f5a158b60c233062fa0a8543ffaaced513 (patch)
tree7618efc754a9bfab7277dc335cbfeba3f180cc06 /TAO/TAO_IDL
parent4e92865d520dac46061275197f150ea75f99219f (diff)
downloadATCD-757eb4f5a158b60c233062fa0a8543ffaaced513.tar.gz
Respond to Review in #1135
Diffstat (limited to 'TAO/TAO_IDL')
-rw-r--r--TAO/TAO_IDL/util/utl_global.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/util/utl_global.cpp b/TAO/TAO_IDL/util/utl_global.cpp
index 1292fa18d53..38ada2091ad 100644
--- a/TAO/TAO_IDL/util/utl_global.cpp
+++ b/TAO/TAO_IDL/util/utl_global.cpp
@@ -1845,14 +1845,14 @@ bool
IDL_GlobalData::anon_error (void) const
{
return anon_type_diagnostic_ == ANON_TYPE_ERROR &&
- !(idl_version_ >= IDL_VERSION_4);
+ idl_version_ < IDL_VERSION_4;
}
bool
IDL_GlobalData::anon_warning (void) const
{
return anon_type_diagnostic_ == ANON_TYPE_WARNING &&
- !(idl_version_ >= IDL_VERSION_4);
+ idl_version_ < IDL_VERSION_4;
}
bool