summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_component
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-05-07 18:19:16 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-05-07 18:19:16 +0000
commit692c4aabd096a903ac42d61e02148e248758adb5 (patch)
tree478a1c19f69c6735014a726dbb72172b1c1e8265 /TAO/TAO_IDL/be/be_visitor_component
parentc00011cf3f312f499de1314f62841f9cb26088e1 (diff)
downloadATCD-692c4aabd096a903ac42d61e02148e248758adb5.tar.gz
ChangeLogTag: Thu May 7 18:14:03 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_component')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_component/component_ch.cpp5
-rw-r--r--TAO/TAO_IDL/be/be_visitor_component/component_ci.cpp3
2 files changed, 0 insertions, 8 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_component/component_ch.cpp b/TAO/TAO_IDL/be/be_visitor_component/component_ch.cpp
index e5d1bc78907..fb0db9d1d0f 100644
--- a/TAO/TAO_IDL/be/be_visitor_component/component_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_component/component_ch.cpp
@@ -52,9 +52,6 @@ be_visitor_component_ch::visit_component (be_component *node)
*os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__;
- // Now the interface definition itself.
- os->gen_ifdef_macro (node->flat_name ());
-
if (!node->is_local () && !node->is_abstract ())
{
// Forward class declarations.
@@ -260,8 +257,6 @@ be_visitor_component_ch::visit_component (be_component *node)
}
}
- os->gen_endif ();
-
if (be_global->tc_support ())
{
be_visitor_typecode_decl td_visitor (&ctx);
diff --git a/TAO/TAO_IDL/be/be_visitor_component/component_ci.cpp b/TAO/TAO_IDL/be/be_visitor_component/component_ci.cpp
index a7f44a8343f..2942c4cc72f 100644
--- a/TAO/TAO_IDL/be/be_visitor_component/component_ci.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_component/component_ci.cpp
@@ -48,8 +48,6 @@ be_visitor_component_ci::visit_component (be_component *node)
*os << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__ << be_nl;
- os->gen_ifdef_macro (node->flat_name (), "");
-
// Generate the constructor from stub and servant.
node->gen_stub_ctor (os);
@@ -65,7 +63,6 @@ be_visitor_component_ci::visit_component (be_component *node)
<< "{" << be_nl
<< "}" ;
- os->gen_endif ();
node->cli_inline_gen (true);
return 0;
}