summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_union/union_ch.cpp
diff options
context:
space:
mode:
authormayur <mayur@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-06 05:50:44 +0000
committermayur <mayur@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-06 05:50:44 +0000
commit5b13327dc49f77bb90a3bd9ac7fa1ab7ab0f5311 (patch)
tree21f9250a1cb4174bafcdd936089827859a3c75f9 /TAO/TAO_IDL/be/be_visitor_union/union_ch.cpp
parente9b3d12e8bbfeb65d2758e4481640ec701169ac8 (diff)
downloadATCD-5b13327dc49f77bb90a3bd9ac7fa1ab7ab0f5311.tar.gz
ChangeLog: Sat Jan 5 21:31:43 2002 Mayur Deshpande <mayur@ics.uci.edu>
ChangeLog: Sat Jan 5 18:27:59 2002 Mayur Deshpande <mayur@ics.uci.edu> ChangeLog: Sat Jan 5 18:15:34 2002 Mayur Deshpande <mayur@ics.uci.edu>
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_union/union_ch.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_union/union_ch.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_union/union_ch.cpp b/TAO/TAO_IDL/be/be_visitor_union/union_ch.cpp
index 9a7277aa641..5475cc456fc 100644
--- a/TAO/TAO_IDL/be/be_visitor_union/union_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_union/union_ch.cpp
@@ -75,7 +75,7 @@ int be_visitor_union_ch::visit_union (be_union *node)
if (!node->is_local ())
{
- *os << "static void _tao_any_destructor (void*);"
+ *os << "static void _tao_any_destructor (void*);"
<< be_nl << be_nl;
}
@@ -120,7 +120,7 @@ int be_visitor_union_ch::visit_union (be_union *node)
// Generate the _var_type typedef
// but we must protect against certain versions of g++.
- *os << "\n#if !defined(__GNUC__) || !defined (ACE_HAS_GNUG_PRE_2_8)"
+ *os << "\n#if !defined(__GNUC__) || !defined (ACE_HAS_GNUG_PRE_2_8)"
<< be_nl;
*os << "typedef " << node->local_name () << "_var _var_type;\n"
<< "#endif /* ! __GNUC__ || g++ >= 2.8 */" << be_nl << be_nl;
@@ -223,7 +223,7 @@ int be_visitor_union_ch::visit_union (be_union *node)
// Generate the ifdefined macro for the array type.
os->gen_ifdef_macro (node->flat_name (), "_out");
- // A class is generated for an out defn only for a variable
+ // A class is generated for an out defn only for a variable
// length struct.
if (node->size_type () == be_decl::VARIABLE)
{
@@ -237,7 +237,7 @@ int be_visitor_union_ch::visit_union (be_union *node)
}
else
{
- *os << "typedef " << node->local_name () << " &"
+ *os << "typedef " << node->local_name () << " &"
<< node->local_name () << "_out;" << be_nl << be_nl;
}