summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-16 21:18:04 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-16 21:18:04 +0000
commitbe427e677606c38010d1a9f59ef5919c4314d7e5 (patch)
treea283cde44084daa3629969ad429de318f99b25fb
parentf7fa66110290c9191371086411fa11192c4eaf17 (diff)
downloadATCD-be427e677606c38010d1a9f59ef5919c4314d7e5.tar.gz
retval had an extra ;, removed it
-rw-r--r--TAO/TAO_IDL/be/be_visitor_operation/operation_cs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_operation/operation_cs.cpp b/TAO/TAO_IDL/be/be_visitor_operation/operation_cs.cpp
index 6fb09b7ba7b..3c1da502255 100644
--- a/TAO/TAO_IDL/be/be_visitor_operation/operation_cs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_operation/operation_cs.cpp
@@ -748,12 +748,12 @@ be_visitor_operation_cs::gen_marshal_and_invoke (be_operation *node,
if (bt->size_type () == be_decl::VARIABLE
|| bt->base_node_type () == AST_Decl::NT_array)
{
- *os << "_tao_safe_retval.in ();";
+ *os << "_tao_safe_retval.in ()";
}
else
{
- *os << "_tao_retval;";
- }
+ *os << "_tao_retval";
+ }
*os <<");" << be_nl;
}