summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-04-03 19:22:37 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-04-03 19:22:37 +0000
commit76ae10f21023b3614d68eabbd6ca41b78d7a223d (patch)
tree50444ba00e6807b1f403535a6b569d9683b06239
parent5316e30dc221b80d3579c4c3ede2ea8fb4bcac7a (diff)
downloadATCD-76ae10f21023b3614d68eabbd6ca41b78d7a223d.tar.gz
ChangeLogTag: Wed Apr 3 13:20:58 2002 Jeff Parsons <parsons@cs.wustl.edu>
-rw-r--r--TAO/TAO_IDL/be/be_visitor_interface/amh_ch.cpp2
-rw-r--r--TAO/TAO_IDL/be/be_visitor_interface/interface_ch.cpp2
-rw-r--r--TAO/TAO_IDL/be/be_visitor_structure/structure_ch.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_interface/amh_ch.cpp b/TAO/TAO_IDL/be/be_visitor_interface/amh_ch.cpp
index 37cb5e84fdc..1e4deb2c634 100644
--- a/TAO/TAO_IDL/be/be_visitor_interface/amh_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_interface/amh_ch.cpp
@@ -113,7 +113,7 @@ be_visitor_amh_interface_ch::visit_interface (be_interface *node)
// Generate the body.
*os << "{" << be_nl
- << "public:" << be_nl
+ << "public:" << be_idt_nl
// Generate the _ptr_type and _var_type typedefs.
<< "typedef " << node->local_name () << "_ptr _ptr_type;"
diff --git a/TAO/TAO_IDL/be/be_visitor_interface/interface_ch.cpp b/TAO/TAO_IDL/be/be_visitor_interface/interface_ch.cpp
index abb48009b4f..eda8d7b45e2 100644
--- a/TAO/TAO_IDL/be/be_visitor_interface/interface_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_interface/interface_ch.cpp
@@ -151,7 +151,7 @@ be_visitor_interface_ch::visit_interface (be_interface *node)
// Generate the body.
*os << "{" << be_nl
- << "public:" << be_nl
+ << "public:" << be_idt_nl
// Generate the _ptr_type and _var_type typedefs.
<< "typedef " << node->local_name () << "_ptr _ptr_type;"
diff --git a/TAO/TAO_IDL/be/be_visitor_structure/structure_ch.cpp b/TAO/TAO_IDL/be/be_visitor_structure/structure_ch.cpp
index f0953cadbc2..59274a928f2 100644
--- a/TAO/TAO_IDL/be/be_visitor_structure/structure_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_structure/structure_ch.cpp
@@ -48,7 +48,7 @@ int be_visitor_structure_ch::visit_structure (be_structure *node)
*os << "struct " << be_global->stub_export_macro () << " "
<< node->local_name () << be_nl
- << "{" << be_idt << be_nl;
+ << "{" << be_idt_nl;
// Generate the _ptr_type and _var_type typedefs.
*os << "typedef " << node->local_name () << "_var _var_type;"