aboutsummaryrefslogtreecommitdiff
path: root/gdb/solib.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2023-10-10 15:47:41 +0000
committerSimon Marchi <simon.marchi@efficios.com>2023-10-19 10:57:51 -0400
commit25b5a04e858ae7c0dd859c082b35f63d9ee50feb (patch)
tree565967d8da985be9a01d4a4a169114287733a14d /gdb/solib.c
parent4ac91b6bb82e82066ad10914121c75d7c99b7bbf (diff)
downloadgdb-25b5a04e858ae7c0dd859c082b35f63d9ee50feb.zip
gdb-25b5a04e858ae7c0dd859c082b35f63d9ee50feb.tar.gz
gdb-25b5a04e858ae7c0dd859c082b35f63d9ee50feb.tar.bz2
gdb: remove target_section_table typedef
Remove this typedef. I think that hiding the real type (std::vector) behind a typedef just hinders readability. Change-Id: I80949da3392f60a2826c56c268e0ec6f503ad79f Approved-By: Pedro Alves <pedro@palves.net> Reviewed-By: Reviewed-By: Lancelot Six <lancelot.six@amd.com>
Diffstat (limited to 'gdb/solib.c')
-rw-r--r--gdb/solib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/solib.c b/gdb/solib.c
index e38f495..fda76a8 100644
--- a/gdb/solib.c
+++ b/gdb/solib.c
@@ -593,7 +593,7 @@ solib_map_sections (so_list &so)
strcpy (so.so_name, bfd_get_filename (so.abfd));
if (so.sections == nullptr)
- so.sections = new target_section_table;
+ so.sections = new std::vector<target_section>;
*so.sections = build_section_table (so.abfd);
for (target_section &p : *so.sections)