summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-01 16:00:17 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-01 16:00:17 +0000
commit2f92f44c044abcebb8894609cb3198fd4e5b0f68 (patch)
treefcec3edd4cf0a126e84f352af76869863b18891c /TAO/TAO_IDL
parente40db27d2d5c8b5f770fea3481c70fe6137245a7 (diff)
downloadATCD-2f92f44c044abcebb8894609cb3198fd4e5b0f68.tar.gz
Removed redundant generation of ACE_CHECK.
Diffstat (limited to 'TAO/TAO_IDL')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_operation/operation_ss.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_operation/operation_ss.cpp b/TAO/TAO_IDL/be/be_visitor_operation/operation_ss.cpp
index 5ecc3c26123..18a98dd2e62 100644
--- a/TAO/TAO_IDL/be/be_visitor_operation/operation_ss.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_operation/operation_ss.cpp
@@ -835,7 +835,7 @@ be_compiled_visitor_operation_ss::gen_marshal_params (be_operation *node,
// first initialize a reply message
os->indent ();
*os << "_tao_server_request.init_reply (ACE_TRY_ENV);" << be_nl
- << "ACE_CHECK;\n";
+ << "ACE_CHECK;" << be_nl;
// We still need the following check because we maybe 2way and yet have no
// parameters and a void return type
@@ -846,10 +846,6 @@ be_compiled_visitor_operation_ss::gen_marshal_params (be_operation *node,
return 0;
}
- // grab the incoming stream
- os->indent ();
- *os << "ACE_CHECK;" << be_nl;
-
// Create temporary variables for the out and return parameters..
if (!this->void_return_type (bt))
{