diff options
author | gokhale <asgokhale@users.noreply.github.com> | 1998-04-09 17:20:18 +0000 |
---|---|---|
committer | gokhale <asgokhale@users.noreply.github.com> | 1998-04-09 17:20:18 +0000 |
commit | 23cc335968c34ad5f641cf463e5cace25646f5d3 (patch) | |
tree | b55501bf3e7366de6fb34bc07e91fb9541375923 /TAO/TAO_IDL | |
parent | d9a9b0e3dc9076b94f06c9b293b0b439ea8cd2be (diff) | |
download | ATCD-23cc335968c34ad5f641cf463e5cace25646f5d3.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/TAO_IDL')
-rw-r--r-- | TAO/TAO_IDL/be/be_visitor_exception.cpp | 4 |
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; } // ************************************************************************ |