summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_init_arglist_ch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_init_arglist_ch.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_init_arglist_ch.cpp41
1 files changed, 19 insertions, 22 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_init_arglist_ch.cpp b/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_init_arglist_ch.cpp
index ba41ba1371a..c0c9e8e97f6 100644
--- a/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_init_arglist_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_init_arglist_ch.cpp
@@ -19,8 +19,8 @@
//
// ============================================================================
-ACE_RCSID (be_visitor_valuetype_init,
- arglist_ch,
+ACE_RCSID (be_visitor_valuetype_init,
+ arglist_ch,
"$Id$")
be_visitor_valuetype_init_arglist_ch::be_visitor_valuetype_init_arglist_ch (
@@ -42,9 +42,9 @@ be_visitor_valuetype_init_arglist_ch::visit_factory (be_factory *node)
TAO_OutStream& os = *(this->ctx_->stream ());
os << " (";
-
+
if (node->nmembers () > 0)
- {
+ {
os << be_idt << be_idt_nl;
// All we do is hand over code generation to our scope.
@@ -121,21 +121,20 @@ be_visitor_valuetype_init_arglist_ch::gen_throw_spec (be_factory *node)
{
TAO_OutStream *os = this->ctx_->stream ();
- if (node->exceptions ())
- {
- const char *throw_spec_open = "throw (";
- const char *throw_spec_close = ")";
+ const char *throw_spec_open = "throw (";
+ const char *throw_spec_close = ")";
- if (!be_global->use_raw_throw ())
- {
- throw_spec_open = "ACE_THROW_SPEC ((";
- throw_spec_close = "))";
- }
+ if (!be_global->use_raw_throw ())
+ {
+ throw_spec_open = "ACE_THROW_SPEC ((";
+ throw_spec_close = "))";
+ }
- *os << be_nl << throw_spec_open << be_idt;
-
- bool first = true;
+ *os << be_nl << throw_spec_open;
+ *os << be_idt_nl << "::CORBA::SystemException";
+ if (node->exceptions ())
+ {
// Initialize an iterator to iterate thru the exception list.
for (UTL_ExceptlistActiveIterator ei (node->exceptions ());
!ei.is_done ();
@@ -154,15 +153,13 @@ be_visitor_valuetype_init_arglist_ch::gen_throw_spec (be_factory *node)
}
- *os << (first ? "" : ",") << be_nl
- << excp->name ();
-
- first = false;
+ *os << "," << be_nl;
+ *os << excp->name ();
}
-
- *os << be_uidt_nl << throw_spec_close << be_uidt;
}
+ *os << be_uidt_nl << throw_spec_close << be_uidt;
+
return 0;
}