diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2025-02-17 14:59:30 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2025-02-19 11:14:41 -0500 |
commit | 890d1d385f457829f90dbd963aaa29a212ce9e20 (patch) | |
tree | 7a8d39158d122ac66c0d6f2008414ad2259b2944 /gdb/dwarf2/read-debug-names.c | |
parent | df50675d4ef54858947c2069529eb8cd4401b813 (diff) | |
download | binutils-890d1d385f457829f90dbd963aaa29a212ce9e20.zip binutils-890d1d385f457829f90dbd963aaa29a212ce9e20.tar.gz binutils-890d1d385f457829f90dbd963aaa29a212ce9e20.tar.bz2 |
gdb/dwarf: std::unordered_{set,map} -> gdb::unordered_{set,map} throughout
No behavior changes expected.
Change-Id: I16ff6c67058362c65cc8edb05d1948e48be6b2e1
Approved-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdb/dwarf2/read-debug-names.c')
-rw-r--r-- | gdb/dwarf2/read-debug-names.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dwarf2/read-debug-names.c b/gdb/dwarf2/read-debug-names.c index 5383cf2..924b570 100644 --- a/gdb/dwarf2/read-debug-names.c +++ b/gdb/dwarf2/read-debug-names.c @@ -112,7 +112,7 @@ struct mapped_debug_names_reader std::vector<attr> attr_vec; }; - std::unordered_map<ULONGEST, index_val> abbrev_map; + gdb::unordered_map<ULONGEST, index_val> abbrev_map; /* Even though the scanning of .debug_names and creation of the cooked index entries is done serially, we create multiple shards so that the |