summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_union/cdr_op_ci.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_union/cdr_op_ci.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_union/cdr_op_ci.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_union/cdr_op_ci.cpp b/TAO/TAO_IDL/be/be_visitor_union/cdr_op_ci.cpp
index 3d532e16da6..4311a2553a8 100644
--- a/TAO/TAO_IDL/be/be_visitor_union/cdr_op_ci.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_union/cdr_op_ci.cpp
@@ -81,17 +81,17 @@ be_visitor_union_cdr_op_ci::visit_union (be_union *node)
switch (node->udisc_type ())
{
case AST_Expression::EV_bool:
- *os << "CORBA_Any::from_boolean tmp (_tao_union._d ());" << be_nl
+ *os << "CORBA::Any::from_boolean tmp (_tao_union._d ());" << be_nl
<< "if ( !(strm << tmp) )" << be_idt_nl;
break;
case AST_Expression::EV_char:
- *os << "CORBA_Any::from_char tmp (_tao_union._d ());" << be_nl
+ *os << "CORBA::Any::from_char tmp (_tao_union._d ());" << be_nl
<< "if ( !(strm << tmp) )" << be_idt_nl;
break;
case AST_Expression::EV_wchar:
- *os << "CORBA_Any::from_wchar tmp (_tao_union._d ());" << be_nl
+ *os << "CORBA::Any::from_wchar tmp (_tao_union._d ());" << be_nl
<< "if ( !(strm << tmp) )" << be_idt_nl;
break;
@@ -152,17 +152,17 @@ be_visitor_union_cdr_op_ci::visit_union (be_union *node)
switch (node->udisc_type ())
{
case AST_Expression::EV_bool:
- *os << "CORBA_Any::to_boolean tmp (_tao_discriminant);" << be_nl
+ *os << "CORBA::Any::to_boolean tmp (_tao_discriminant);" << be_nl
<< "if ( !(strm >> tmp) )" << be_idt_nl;
break;
case AST_Expression::EV_char:
- *os << "CORBA_Any::to_char tmp (_tao_discriminant);" << be_nl
+ *os << "CORBA::Any::to_char tmp (_tao_discriminant);" << be_nl
<< "if ( !(strm >> tmp) )" << be_idt_nl;
break;
case AST_Expression::EV_wchar:
- *os << "CORBA_Any::to_wchar tmp (_tao_discriminant);" << be_nl
+ *os << "CORBA::Any::to_wchar tmp (_tao_discriminant);" << be_nl
<< "if ( !(strm >> tmp) )" << be_idt_nl;
break;