summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL
diff options
context:
space:
mode:
authorgokhale <asgokhale@users.noreply.github.com>1998-04-09 17:20:18 +0000
committergokhale <asgokhale@users.noreply.github.com>1998-04-09 17:20:18 +0000
commit23cc335968c34ad5f641cf463e5cace25646f5d3 (patch)
treeb55501bf3e7366de6fb34bc07e91fb9541375923 /TAO/TAO_IDL
parentd9a9b0e3dc9076b94f06c9b293b0b439ea8cd2be (diff)
downloadATCD-23cc335968c34ad5f641cf463e5cace25646f5d3.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/TAO_IDL')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_exception.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_exception.cpp b/TAO/TAO_IDL/be/be_visitor_exception.cpp
index 712202ba83f..345c46f3ea3 100644
--- a/TAO/TAO_IDL/be/be_visitor_exception.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_exception.cpp
@@ -687,7 +687,9 @@ int be_visitor_exception_ctor::visit_union (be_union *node)
int be_visitor_exception_ctor::visit_typedef (be_typedef *node)
{
this->ctx_->alias (node);
- return node->primitive_base_type ()->accept (this);
+ (void) node->primitive_base_type ()->accept (this);
+ this->ctx_->alias (0);
+ return 0;
}
// ************************************************************************