summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_valuebox/any_op_ch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_valuebox/any_op_ch.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_valuebox/any_op_ch.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_valuebox/any_op_ch.cpp b/TAO/TAO_IDL/be/be_visitor_valuebox/any_op_ch.cpp
index eb2cdd2da41..7b2c09eeb99 100644
--- a/TAO/TAO_IDL/be/be_visitor_valuebox/any_op_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_valuebox/any_op_ch.cpp
@@ -77,15 +77,15 @@ be_visitor_valuebox_any_op_ch::visit_valuebox (be_valuebox *node)
// emit nested variation of any operators
*os << be_global->stub_export_macro () << " void"
- << " operator<<= (CORBA::Any &, " << node->local_name ()
+ << " operator<<= ( ::CORBA::Any &, " << node->local_name ()
<< " *); // copying" << be_nl;
*os << be_global->stub_export_macro () << " void"
- << " operator<<= (CORBA::Any &, " << node->local_name ()
+ << " operator<<= ( ::CORBA::Any &, " << node->local_name ()
<< " **); // non-copying" << be_nl;
- *os << be_global->stub_export_macro () << " CORBA::Boolean"
- << " operator>>= (const CORBA::Any &, "
+ *os << be_global->stub_export_macro () << " ::CORBA::Boolean"
+ << " operator>>= (const ::CORBA::Any &, "
<< node->local_name () << " *&);";
be_util::gen_nested_namespace_end (os, module);
@@ -95,15 +95,15 @@ be_visitor_valuebox_any_op_ch::visit_valuebox (be_valuebox *node)
}
*os << be_global->stub_export_macro () << " void"
- << " operator<<= (CORBA::Any &, " << node->name ()
+ << " operator<<= ( ::CORBA::Any &, " << node->name ()
<< " *); // copying" << be_nl;
*os << be_global->stub_export_macro () << " void"
- << " operator<<= (CORBA::Any &, " << node->name ()
+ << " operator<<= ( ::CORBA::Any &, " << node->name ()
<< " **); // non-copying" << be_nl;
- *os << be_global->stub_export_macro () << " CORBA::Boolean"
- << " operator>>= (const CORBA::Any &, "
+ *os << be_global->stub_export_macro () << " ::CORBA::Boolean"
+ << " operator>>= (const ::CORBA::Any &, "
<< node->name () << " *&);";
if (module != 0)