From cf10eef4b9a6dde7fa63edd77c482d75bc1ae51f Mon Sep 17 00:00:00 2001 From: Fred Hornsey Date: Tue, 9 Nov 2021 00:47:32 -0600 Subject: `TAO/NEWS`: Correct Spelling --- TAO/NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TAO/NEWS b/TAO/NEWS index 80208dfb747..95cb2139c6d 100644 --- a/TAO/NEWS +++ b/TAO/NEWS @@ -1,7 +1,7 @@ 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. +. TAO_IDL: Fix bug where floating point constant expressions fail to evaluate. This bug was introduced in in 3.0.3. USER VISIBLE CHANGES BETWEEN TAO-3.0.3 and TAO-3.0.4 -- cgit v1.2.1 From 05c690e4196f4830a25d2e45a758b4f714d34bf6 Mon Sep 17 00:00:00 2001 From: Fred Hornsey Date: Tue, 9 Nov 2021 12:34:31 -0600 Subject: Remove Mod for Booleans To address warnings on windows. --- TAO/TAO_IDL/ast/ast_expression.cpp | 5 ----- 1 file changed, 5 deletions(-) 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 ( - pd_v1->ev ()->u.bval, pd_v2->ev ()->u.bval, retval->u.bval); - break; - default: break; } -- cgit v1.2.1 From 576421723fad21844f94f2cbf8a55fa43ab1e7bf Mon Sep 17 00:00:00 2001 From: Fred Hornsey Date: Tue, 9 Nov 2021 12:54:22 -0600 Subject: Update TAO/NEWS Co-authored-by: Adam Mitz --- TAO/NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TAO/NEWS b/TAO/NEWS index 95cb2139c6d..e96703d09fe 100644 --- a/TAO/NEWS +++ b/TAO/NEWS @@ -2,7 +2,7 @@ USER VISIBLE CHANGES BETWEEN TAO-3.0.4 and TAO-3.0.5 ==================================================== . TAO_IDL: Fix bug where floating point constant expressions fail to evaluate. - This bug was introduced in in 3.0.3. + This bug was introduced in 3.0.3. USER VISIBLE CHANGES BETWEEN TAO-3.0.3 and TAO-3.0.4 ==================================================== -- cgit v1.2.1