summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_interface.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-07-15 01:12:16 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-07-15 01:12:16 +0000
commit3994565f3b38534d9a0e00f0269b300b93a74153 (patch)
treef6b6706a18a5c594798e24451184b67c5f44b69c /TAO/TAO_IDL/be/be_interface.cpp
parent1c251924e1b56dd3b4f0ca0ce3e38ae7dbbb4b06 (diff)
downloadATCD-3994565f3b38534d9a0e00f0269b300b93a74153.tar.gz
Tue Jul 15 01:10:54 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/TAO_IDL/be/be_interface.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_interface.cpp27
1 files changed, 12 insertions, 15 deletions
diff --git a/TAO/TAO_IDL/be/be_interface.cpp b/TAO/TAO_IDL/be/be_interface.cpp
index 4bf7e7683b1..31eeaf19780 100644
--- a/TAO/TAO_IDL/be/be_interface.cpp
+++ b/TAO/TAO_IDL/be/be_interface.cpp
@@ -2222,11 +2222,10 @@ be_interface::gen_colloc_op_decl_helper (be_interface *derived,
// Generate the static method corresponding to this method.
*os << "static void" << be_nl
- << d->local_name () << " (" << be_idt << be_idt_nl
- << "TAO_Abstract_ServantBase *servant, " << be_nl
- << "TAO::Argument ** args," << be_nl
- << "int num_args" << be_uidt_nl
- << ");";
+ << d->local_name () << " (" << be_idt_nl
+ << "TAO_Abstract_ServantBase *servant, "
+ << "TAO::Argument **args, "
+ << "int num_args);" << be_uidt_nl;
}
else if (d->node_type () == AST_Decl::NT_attr)
{
@@ -2239,11 +2238,10 @@ be_interface::gen_colloc_op_decl_helper (be_interface *derived,
// Generate the static method corresponding to this method.
*os << "static void" << be_nl
- << "_get_" << d->local_name () << " (" << be_idt << be_idt_nl
- << "TAO_Abstract_ServantBase *servant, " << be_nl
- << "TAO::Argument ** args," << be_nl
- << "int num_args" << be_uidt_nl
- << ");";
+ << "_get_" << d->local_name () << " (" << be_idt_nl
+ << "TAO_Abstract_ServantBase *servant, "
+ << "TAO::Argument **args, "
+ << "int num_args);" << be_uidt_nl;
if (!attr->readonly ())
{
@@ -2253,11 +2251,10 @@ be_interface::gen_colloc_op_decl_helper (be_interface *derived,
// this method.
*os << "static void" << be_nl
<< "_set_" << d->local_name () << " ("
- << be_idt << be_idt_nl
- << "TAO_Abstract_ServantBase *servant, " << be_nl
- << "TAO::Argument ** args," << be_nl
- << "int num_args" << be_uidt_nl
- << ");";
+ << be_idt_nl
+ << "TAO_Abstract_ServantBase *servant, "
+ << "TAO::Argument **args, "
+ << "int num_args);" << be_uidt_nl;
}
}
}