summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_argument/compiled_marshal_ss.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_argument/compiled_marshal_ss.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_argument/compiled_marshal_ss.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_argument/compiled_marshal_ss.cpp b/TAO/TAO_IDL/be/be_visitor_argument/compiled_marshal_ss.cpp
index ec62bea1481..8d5387ea8b9 100644
--- a/TAO/TAO_IDL/be/be_visitor_argument/compiled_marshal_ss.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_argument/compiled_marshal_ss.cpp
@@ -151,21 +151,13 @@ int be_visitor_args_compiled_marshal_ss::visit_array (be_array *node)
switch (this->direction ())
{
case AST_Argument::dir_IN:
-#if 0
*os << node->name () << "_forany ("
<< "(" << node->name () << "_slice *)"
<< arg->local_name () << ")";
-#else
- *os << "_tao_forany_" << arg->local_name ();
-#endif
break;
case AST_Argument::dir_INOUT:
-#if 0
*os << node->name () << "_forany ("
<< arg->local_name () << ")";
-#else
- *os << "_tao_forany_" << arg->local_name ();
-#endif
break;
case AST_Argument::dir_OUT:
break;
@@ -178,15 +170,10 @@ int be_visitor_args_compiled_marshal_ss::visit_array (be_array *node)
case AST_Argument::dir_IN:
break;
case AST_Argument::dir_INOUT:
-#if 0
*os << node->name () << "_forany ("
<< arg->local_name () << ")";
-#else
- *os << "_tao_forany_" << arg->local_name ();
-#endif
break;
case AST_Argument::dir_OUT:
-#if 0
if (node->size_type () == be_decl::VARIABLE)
{
*os << node->name () << "_forany ("
@@ -198,9 +185,6 @@ int be_visitor_args_compiled_marshal_ss::visit_array (be_array *node)
*os << node->name () << "_forany ("
<< arg->local_name () << ")";
}
-#else
- *os << "_tao_forany_" << arg->local_name ();
-#endif
break;
}
}