summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2016-11-04 13:08:22 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2016-11-04 13:08:22 +0100
commita4dd2cf069a0584733bfe3afd0ad4aa92ec0b22e (patch)
treeb2d7139a5ca4a33cc9b705cad102e3f636313530
parentf7c787705124fe0870ae5415c06886e2fbd3aa5f (diff)
downloadATCD-a4dd2cf069a0584733bfe3afd0ad4aa92ec0b22e.tar.gz
Reduce sloc
* TAO/TAO_IDL/be/be_visitor_operation/ami_handler_reply_stub_operation_cs.cpp:
-rw-r--r--TAO/TAO_IDL/be/be_visitor_operation/ami_handler_reply_stub_operation_cs.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_operation/ami_handler_reply_stub_operation_cs.cpp b/TAO/TAO_IDL/be/be_visitor_operation/ami_handler_reply_stub_operation_cs.cpp
index 80734a4a59e..f69bf8dae01 100644
--- a/TAO/TAO_IDL/be/be_visitor_operation/ami_handler_reply_stub_operation_cs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_operation/ami_handler_reply_stub_operation_cs.cpp
@@ -196,7 +196,7 @@ be_visitor_operation_ami_handler_reply_stub_operation_cs::visit_operation (
*os << be_uidt_nl << "};" << be_nl_2;
*os << "::CORBA::ULong const exceptions_count = "
- << excep_count << ";\n" << be_nl;
+ << excep_count << ";" << be_nl;
exception_data_arg = "exceptions_data";
exception_count_arg = "exceptions_count";
@@ -207,8 +207,8 @@ be_visitor_operation_ami_handler_reply_stub_operation_cs::visit_operation (
<< "static_cast <CORBA::ULong> (cdr->length ())," << be_nl
<< "static_cast <CORBA::ULong> (cdr->length ())," << be_nl
<< "reinterpret_cast <unsigned char*> (cdr->rd_ptr ())," << be_nl
- << "0" << be_uidt_nl
- << ");" << be_uidt_nl;
+ << "0);" << be_uidt
+ << be_uidt_nl;
*os << "::Messaging::ExceptionHolder* exception_holder_ptr = 0;" << be_nl
<< "ACE_NEW (" << be_idt << be_idt_nl
@@ -220,17 +220,17 @@ be_visitor_operation_ami_handler_reply_stub_operation_cs::visit_operation (
<< exception_data_arg << "," << be_nl
<< exception_count_arg << "," << be_nl
<< "_tao_in.char_translator ()," << be_nl
- << "_tao_in.wchar_translator ()" << ")" << be_uidt_nl
- << ");" << be_uidt_nl << be_uidt_nl;
+ << "_tao_in.wchar_translator ()" << "));" << be_uidt
+ << be_uidt_nl << be_uidt_nl;
*os << "::Messaging::ExceptionHolder_var exception_holder_var = "
<< "exception_holder_ptr;" << be_nl;
*os << "_tao_reply_handler_object->"
<< node->local_name () << "_excep (" << be_idt << be_idt_nl
- << "exception_holder_var";
+ << "exception_holder_var);";
- *os << be_uidt_nl << ");" << be_uidt_nl;
+ *os << be_uidt << be_uidt_nl;
*os << "break;" << be_uidt_nl
<< "}" << be_nl;