summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_operation/rettype_vardecl_cs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_operation/rettype_vardecl_cs.cpp')
-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 bb9e1a763bd..9cd41f14904 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
@@ -313,7 +313,7 @@ be_visitor_operation_rettype_vardecl_cs::visit_structure (be_structure *node)
// Based on whether we are variable or not, we return a pointer or the
// aggregate type.
- if (node->size_type () == be_decl::VARIABLE)
+ if (node->size_type () == AST_Type::VARIABLE)
{
*os << bt->name () << "_var _tao_retval;" << be_nl;
}
@@ -365,7 +365,7 @@ be_visitor_operation_rettype_vardecl_cs::visit_union (be_union *node)
// Based on whether we are variable or not, we return a pointer or the
// aggregate type.
- if (node->size_type () == be_decl::VARIABLE)
+ if (node->size_type () == AST_Type::VARIABLE)
{
*os << bt->name () << "_var _tao_retval;";
}