summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_sequence/cdr_op_ci.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_sequence/cdr_op_ci.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_sequence/cdr_op_ci.cpp23
1 files changed, 3 insertions, 20 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/cdr_op_ci.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/cdr_op_ci.cpp
index 2cc13a9f049..c2da5f9d78d 100644
--- a/TAO/TAO_IDL/be/be_visitor_sequence/cdr_op_ci.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_sequence/cdr_op_ci.cpp
@@ -55,35 +55,18 @@ be_visitor_sequence_cdr_op_ci::visit_sequence (be_sequence *node)
// save all that time to generate them inline and this breaks
// the dependencies for recursive types.
- be_type *bt = be_type::narrow_from_decl (node);
- be_typedef *tdef = be_typedef::narrow_from_decl (bt);
-
- // If we're an anonymous sequence, we must protect against
- // being declared more than once.
- if (!tdef)
- {
- *os << "\n#if !defined _TAO_CDR_OP_"
- << node->flatname () << "_I_" << be_nl
- << "#define _TAO_CDR_OP_" << node->flatname () << "_I_\n\n";
- }
-
- *os << "CORBA::Boolean " << idl_global->stub_export_macro ()
+ os->indent ();
+ *os << "CORBA::Boolean " << idl_global->export_macro ()
<< " operator<< (" << be_idt << be_idt_nl
<< "TAO_OutputCDR &," << be_nl
<< "const " << node->name () << " &" << be_uidt_nl
<< ");" << be_uidt_nl;
- *os << "CORBA::Boolean " << idl_global->stub_export_macro ()
+ *os << "CORBA::Boolean " << idl_global->export_macro ()
<< " operator>> (" << be_idt << be_idt_nl
<< "TAO_InputCDR &," << be_nl
<< node->name () << " &" << be_uidt_nl
<< ");" << be_uidt << "\n\n";
- if (!tdef)
- {
- *os << "#endif /* _TAO_CDR_OP_"
- << node->flatname () << "_I_ */\n\n";
- }
-
node->cli_inline_cdr_op_gen (1);
return 0;