summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2019-06-05 14:17:20 -0500
committerFred Hornsey <hornseyf@objectcomputing.com>2019-06-05 14:17:20 -0500
commit2a145992dbc9196cccda37903c04a7a300f3cb91 (patch)
treedea1c42a1b8b030499a2803eded0646f0cfe02d2
parenta580273d5fc7a820ab23b1aa40faf23e97063000 (diff)
downloadATCD-2a145992dbc9196cccda37903c04a7a300f3cb91.tar.gz
tao_idl: fix --dump segfault
-rw-r--r--TAO/TAO_IDL/ast/ast_decl.cpp4
1 files 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 ();