summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2021-11-05 13:34:50 -0500
committerFred Hornsey <hornseyf@objectcomputing.com>2021-11-05 13:34:50 -0500
commite5854ea627173c0a83ab4cb2a5c17f9966038237 (patch)
treec7202df33bec764547438f225e0493adef91446d
parentb549b44c8a4c8474a076f28d55997cc543af0b3c (diff)
downloadATCD-e5854ea627173c0a83ab4cb2a5c17f9966038237.tar.gz
Fix More Parentheses Spacing
-rw-r--r--TAO/TAO_IDL/ast/ast_expression.cpp2
-rw-r--r--TAO/tests/IDL_Test/main.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/TAO/TAO_IDL/ast/ast_expression.cpp b/TAO/TAO_IDL/ast/ast_expression.cpp
index 61f200426d9..0c269cdf569 100644
--- a/TAO/TAO_IDL/ast/ast_expression.cpp
+++ b/TAO/TAO_IDL/ast/ast_expression.cpp
@@ -1858,7 +1858,7 @@ AST_Expression::eval_mod_op (AST_Expression::EvalKind ek)
}
ExprType const expr_type = ek == EK_const ?
- pd_v1->ev()->et : eval_kind_to_expr_type (ek);
+ pd_v1->ev ()->et : eval_kind_to_expr_type (ek);
if (expr_type == EV_none) return nullptr;
ACE_NEW_RETURN (retval,
diff --git a/TAO/tests/IDL_Test/main.cpp b/TAO/tests/IDL_Test/main.cpp
index e1bf0f7124a..f766683a587 100644
--- a/TAO/tests/IDL_Test/main.cpp
+++ b/TAO/tests/IDL_Test/main.cpp
@@ -139,7 +139,7 @@ test_expressions (int &error_count)
}
int
-ACE_TMAIN(int argc, ACE_TCHAR *argv[])
+ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
int error_count = 0;
@@ -234,8 +234,8 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
// Check whether the implementation of Dubble and Toil are generated
CommaList::Dubble dub;
CommaList::Toil toi;
- dub.length(4);
- toi.length(4);
+ dub.length (4);
+ toi.length (4);
ciao_i c;
id = root_poa->activate_object (&c);
@@ -385,7 +385,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
if (!dynamic_cast<POA_bug_1985_c::d::AMI_somethingHandler*> (&x))
{
++error_count;
- ACE_ERROR( (LM_ERROR,
+ ACE_ERROR ((LM_ERROR,
"mismatch in downcast for %C\n",
base[0]));
}