diff options
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; } // ************************************************************************ |