From: Tom Tromey Date: Tue, 11 Mar 2025 15:31:55 +0000 (-0600) Subject: Use gdb unordered map in gdb_bfd.c X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=33f1e7e899b98bcccf009e2272040d0ccf662681;p=thirdparty%2Fbinutils-gdb.git Use gdb unordered map in gdb_bfd.c This changes gdb_bfd.c to use gdb:unordered_map. Approved-By: Simon Marchi --- diff --git a/gdb/gdb_bfd.c b/gdb/gdb_bfd.c index c233551b4e8..8380c5377a5 100644 --- a/gdb/gdb_bfd.c +++ b/gdb/gdb_bfd.c @@ -33,7 +33,7 @@ #include "gdbsupport/fileio.h" #include "inferior.h" #include "cli/cli-style.h" -#include +#include "gdbsupport/unordered_map.h" #include "gdbsupport/unordered_set.h" #if CXX_STD_THREAD @@ -1207,7 +1207,7 @@ maintenance_info_bfds (const char *arg, int from_tty) struct bfd_inferior_data { - std::unordered_map bfd_error_string_counts; + gdb::unordered_map bfd_error_string_counts; }; /* Per-inferior data key. */