summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgokhale <asgokhale@users.noreply.github.com>1998-06-26 21:12:02 +0000
committergokhale <asgokhale@users.noreply.github.com>1998-06-26 21:12:02 +0000
commit4176b4fe63e3a132eef9f25f41020be80bea02cb (patch)
tree28d6fdc1f3cf76d83ab70ee0a1553ca1b2d1c197
parent94b405593ef1591ffcbd3f1ec6545cf5e3801b22 (diff)
downloadATCD-4176b4fe63e3a132eef9f25f41020be80bea02cb.tar.gz
*** empty log message ***
-rw-r--r--TAO/TAO_IDL/be/be_visitor_array/array_ch.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_array/array_ch.cpp b/TAO/TAO_IDL/be/be_visitor_array/array_ch.cpp
index 7922da8413b..b61b22b3ee3 100644
--- a/TAO/TAO_IDL/be/be_visitor_array/array_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_array/array_ch.cpp
@@ -150,16 +150,16 @@ int be_visitor_array_ch::visit_array (be_array *node)
// the _alloc, _dup, copy, and free methods. If the node is nested, the
// methods become static
os->indent ();
- *os << "static " << node->nested_type_name (scope, "_slice") << " *"
- << node->nested_type_name (scope, "_alloc") << " (void);" << be_nl;
- *os << "static " << node->nested_type_name (scope, "_slice") << " *"
- << node->nested_type_name (scope, "_dup") << " (const "
- << node->nested_type_name (scope, "_slice") << " *_tao_slice);" << be_nl;
- *os << "static void " << node->nested_type_name (scope, "_copy") << " ("
- << node->nested_type_name (scope, "_slice") << " *_tao_to, const "
- << node->nested_type_name (scope, "_slice") << " *_tao_from);" << be_nl;
- *os << "static void " << node->nested_type_name (scope, "_free") << " ("
- << node->nested_type_name (scope, "_slice") << " *_tao_slice);" << be_nl;
+ *os << "static " << node->nested_type_name (scope, "_slice") << " *";
+ *os << node->nested_type_name (scope, "_alloc") << " (void);" << be_nl;
+ *os << "static " << node->nested_type_name (scope, "_slice") << " *";
+ *os << node->nested_type_name (scope, "_dup") << " (const ";
+ *os << node->nested_type_name (scope, "_slice") << " *_tao_slice);" << be_nl;
+ *os << "static void " << node->nested_type_name (scope, "_copy") << " (";
+ *os << node->nested_type_name (scope, "_slice") << " *_tao_to, const ";
+ *os << node->nested_type_name (scope, "_slice") << " *_tao_from);" << be_nl;
+ *os << "static void " << node->nested_type_name (scope, "_free") << " (";
+ *os << node->nested_type_name (scope, "_slice") << " *_tao_slice);" << be_nl;
// is this a typedefined array? if so, then let the typedef deal with
// generation of the typecode