From 2a145992dbc9196cccda37903c04a7a300f3cb91 Mon Sep 17 00:00:00 2001 From: Fred Hornsey Date: Wed, 5 Jun 2019 14:17:20 -0500 Subject: tao_idl: fix --dump segfault --- TAO/TAO_IDL/ast/ast_decl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TAO/TAO_IDL/ast/ast_decl.cpp b/TAO/TAO_IDL/ast/ast_decl.cpp index e62a79fdf33..81411d16f63 100644 --- a/TAO/TAO_IDL/ast/ast_decl.cpp +++ b/TAO/TAO_IDL/ast/ast_decl.cpp @@ -1603,8 +1603,8 @@ void AST_Decl::dump_annotations (ACE_OSTREAM_TYPE &o, bool print_inline) { AST_Annotation_Appls::iterator - i = annotation_appls_->begin (), - finished = annotation_appls_->end (); + i = annotation_appls ().begin (), + finished = annotation_appls ().end (); for (; i != finished; ++i) { AST_Annotation_Appl* a = i->get (); -- cgit v1.2.1