diff options
author | Tom Tromey <tromey@adacore.com> | 2024-06-05 08:51:01 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2024-06-24 09:11:29 -0600 |
commit | e433e995a948f6746eb4b2186152baa522193f55 (patch) | |
tree | 2b8262bc542eb9935745005cb0969de1b1a7876b /gdb/annotate.c | |
parent | 5e6ab40868d81401c6f239a368d2db759f5e2947 (diff) | |
download | binutils-e433e995a948f6746eb4b2186152baa522193f55.zip binutils-e433e995a948f6746eb4b2186152baa522193f55.tar.gz binutils-e433e995a948f6746eb4b2186152baa522193f55.tar.bz2 |
Rename symtab::fullname
This renames symtab::fullname to m_fullname and adds new accessor
methods.
Diffstat (limited to 'gdb/annotate.c')
-rw-r--r-- | gdb/annotate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/annotate.c b/gdb/annotate.c index 4ff3eb8..8818029 100644 --- a/gdb/annotate.c +++ b/gdb/annotate.c @@ -451,7 +451,7 @@ annotate_source_line (struct symtab *s, int line, int mid_statement, if (line > offsets->size ()) return false; - annotate_source (s->fullname, line, (int) (*offsets)[line - 1], + annotate_source (s->fullname (), line, (int) (*offsets)[line - 1], mid_statement, s->compunit ()->objfile ()->arch (), pc); |