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:
Simon Marchi
2025-02-17 14:59:30 -05:00
committed by Simon Marchi
parent df50675d4e
commit 890d1d385f
8 changed files with 27 additions and 35 deletions

View File

@@ -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). */