summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-09 05:30:24 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-09 05:30:24 +0000
commitbde7d425b960f8e5eec3e201aa97413cc61aa32b (patch)
tree2af5ca0294f1f1d048509cb7444b7e933d4c608c
parentdfcc2e7ed31032160b46ea5710e078a76e48e358 (diff)
downloadATCD-bde7d425b960f8e5eec3e201aa97413cc61aa32b.tar.gz
ChangeLogTag: Fri May 9 000:27:21 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/TAO_IDL/be/be_visitor_argument/request_info_sh.cpp3
-rw-r--r--TAO/TAO_IDL/be/be_visitor_operation/interceptors_ss.cpp2
3 files changed, 11 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 731460fdda5..18b4e4e9a7c 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Fri May 9 000:27:21 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * TAO_IDL/be/be_visitor_argument/request_info_sh.cpp:
+ * TAO_IDL/be/be_visitor_operation/interceptors_ss.cpp:
+
+ Fixed code generation formatting for TAO_ServerRequestInfo_*
+ return value member.
+
Thu May 8 14:19:34 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
* orbsvcs/examples/ORT/Makefile:
diff --git a/TAO/TAO_IDL/be/be_visitor_argument/request_info_sh.cpp b/TAO/TAO_IDL/be/be_visitor_argument/request_info_sh.cpp
index abaf16de16d..a9f1c48709f 100644
--- a/TAO/TAO_IDL/be/be_visitor_argument/request_info_sh.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_argument/request_info_sh.cpp
@@ -66,8 +66,7 @@ int be_visitor_args_request_info_sh::visit_argument (be_argument *node)
-1);
}
- // As we visit each type we print out the &.
- *os <<" "<< node->local_name () << "_;";
+ *os << " " << node->local_name () << "_;";
return 0;
}
diff --git a/TAO/TAO_IDL/be/be_visitor_operation/interceptors_ss.cpp b/TAO/TAO_IDL/be/be_visitor_operation/interceptors_ss.cpp
index 5603affab76..74892c293e0 100644
--- a/TAO/TAO_IDL/be/be_visitor_operation/interceptors_ss.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_operation/interceptors_ss.cpp
@@ -400,6 +400,8 @@ be_visitor_operation_interceptors_ss::generate_class_declaration (
// void since we cant have a private member to be of void type.
if (!this->void_return_type (bt))
{
+ *os << be_nl;
+
ctx = *this->ctx_;
be_visitor_operation_rettype tor_visitor (&ctx);