summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-09 22:23:00 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-09 22:23:00 +0000
commitf3b02694dfffabc73328f34d8e76de13287888b1 (patch)
treedbeee785b2637a135319c2e2ae6b7b46ca735ad6
parent639e51bb88424aec8718565be466d36f12d1b4cd (diff)
downloadATCD-f3b02694dfffabc73328f34d8e76de13287888b1.tar.gz
Fixed two typos (misplaced parens) in generated code.
-rw-r--r--TAO/TAO_IDL/be/be_visitor_field/cdr_op_ci.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_field/cdr_op_ci.cpp b/TAO/TAO_IDL/be/be_visitor_field/cdr_op_ci.cpp
index 2f0e43155ff..78aa5dbb7e0 100644
--- a/TAO/TAO_IDL/be/be_visitor_field/cdr_op_ci.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_field/cdr_op_ci.cpp
@@ -321,10 +321,10 @@ be_visitor_field_cdr_op_ci::visit_interface_fwd (be_interface_fwd *)
switch (this->ctx_->sub_state ())
{
case TAO_CodeGen::TAO_CDR_INPUT:
- *os << "(strm >> _tao_aggregate." << f->local_name () << ").out ()";
+ *os << "(strm >> _tao_aggregate." << f->local_name () << ".out ())";
break;
case TAO_CodeGen::TAO_CDR_OUTPUT:
- *os << "(strm << _tao_aggregate." << f->local_name () << ").in ()";
+ *os << "(strm << _tao_aggregate." << f->local_name () << ".in ())";
break;
case TAO_CodeGen::TAO_CDR_SCOPE:
// nothing to be done because an interface cannit be declared inside a