summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-20 18:52:46 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-20 18:52:46 +0000
commit3b767772b61727b3c3f5d59f401a7830f234d1d8 (patch)
treede010b445980dc659146406da6a1ee0e3cdd1d36
parentfb0c7310f940fd054abde9f3ce46cedcfec277e3 (diff)
downloadATCD-3b767772b61727b3c3f5d59f401a7830f234d1d8.tar.gz
Return valuetypes now declared in stub as _vars.
-rw-r--r--TAO/TAO_IDL/be/be_visitor_operation/rettype_vardecl_cs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_operation/rettype_vardecl_cs.cpp b/TAO/TAO_IDL/be/be_visitor_operation/rettype_vardecl_cs.cpp
index 8cbc4d303f9..cd280c71066 100644
--- a/TAO/TAO_IDL/be/be_visitor_operation/rettype_vardecl_cs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_operation/rettype_vardecl_cs.cpp
@@ -137,7 +137,7 @@ be_visitor_operation_rettype_vardecl_cs::visit_valuetype (be_valuetype *node)
os->indent ();
- *os << bt->name () << " *_tao_bare_ptr = 0;";
+ *os << bt->name () << "_var _tao_retval;";
*os << be_nl << be_nl;
@@ -156,7 +156,7 @@ be_visitor_operation_rettype_vardecl_cs::visit_valuetype_fwd (be_valuetype_fwd *
bt = node;
os->indent ();
- *os << bt->name () << " *_tao_bare_ptr = 0;";
+ *os << bt->name () << "_var _tao_retval;";
*os << be_nl << be_nl;