mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
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>
This commit is contained in:
committed by
Simon Marchi
parent
df50675d4e
commit
890d1d385f
@@ -44,7 +44,6 @@
|
||||
#include "gdbsupport/selftest.h"
|
||||
#include "selftest-arch.h"
|
||||
#endif
|
||||
#include <unordered_map>
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
@@ -104,7 +103,7 @@ struct dwarf2_cie
|
||||
|
||||
/* The CIE table is used to find CIEs during parsing, but then
|
||||
discarded. It maps from the CIE's offset to the CIE. */
|
||||
typedef std::unordered_map<ULONGEST, dwarf2_cie *> dwarf2_cie_table;
|
||||
using dwarf2_cie_table = gdb::unordered_map<ULONGEST, dwarf2_cie *>;
|
||||
|
||||
/* Frame Description Entry (FDE). */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user