diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdb_bfd.h | 10 |
2 files changed, 13 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c1d7dea..16317fb 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2020-09-19 Tom Tromey <tom@tromey.com> + + * gdb_bfd.h (gdb_bfd_sections): New overload. Fix formatting of + existing function. + 2020-09-19 Andrew Burgess <andrew.burgess@embecosm.com> * f-valprint.c (f77_print_array_1): Adjust printing of whitespace diff --git a/gdb/gdb_bfd.h b/gdb/gdb_bfd.h index 0f45056..1233097 100644 --- a/gdb/gdb_bfd.h +++ b/gdb/gdb_bfd.h @@ -205,10 +205,16 @@ bool gdb_bfd_get_full_section_contents (bfd *abfd, asection *section, using gdb_bfd_section_iterator = next_iterator<asection>; using gdb_bfd_section_range = next_adapter<asection, gdb_bfd_section_iterator>; -static inline -gdb_bfd_section_range gdb_bfd_sections (bfd *abfd) +static inline gdb_bfd_section_range +gdb_bfd_sections (bfd *abfd) { return gdb_bfd_section_range (abfd->sections); } +static inline gdb_bfd_section_range +gdb_bfd_sections (const gdb_bfd_ref_ptr &abfd) +{ + return gdb_bfd_section_range (abfd->sections); +}; + #endif /* GDB_BFD_H */ |