summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/NEWS4
-rw-r--r--TAO/TAO_IDL/ast/ast_expression.cpp5
2 files changed, 2 insertions, 7 deletions
diff --git a/TAO/NEWS b/TAO/NEWS
index 80208dfb747..e96703d09fe 100644
--- a/TAO/NEWS
+++ b/TAO/NEWS
@@ -1,8 +1,8 @@
USER VISIBLE CHANGES BETWEEN TAO-3.0.4 and TAO-3.0.5
====================================================
-. TAO_IDL: Fix bug where floating point constant expressions fail to evaulate.
- This bug was introduced in in 3.0.3.
+. TAO_IDL: Fix bug where floating point constant expressions fail to evaluate.
+ This bug was introduced in 3.0.3.
USER VISIBLE CHANGES BETWEEN TAO-3.0.3 and TAO-3.0.4
====================================================
diff --git a/TAO/TAO_IDL/ast/ast_expression.cpp b/TAO/TAO_IDL/ast/ast_expression.cpp
index 0c269cdf569..7249d745843 100644
--- a/TAO/TAO_IDL/ast/ast_expression.cpp
+++ b/TAO/TAO_IDL/ast/ast_expression.cpp
@@ -1917,11 +1917,6 @@ AST_Expression::eval_mod_op (AST_Expression::EvalKind ek)
pd_v1->ev ()->u.oval, pd_v2->ev ()->u.oval, retval->u.oval);
break;
- case EV_bool:
- success = do_eval_mod_op<ACE_CDR::Boolean> (
- pd_v1->ev ()->u.bval, pd_v2->ev ()->u.bval, retval->u.bval);
- break;
-
default:
break;
}