From 33f1e7e899b98bcccf009e2272040d0ccf662681 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 11 Mar 2025 09:31:55 -0600 Subject: Use gdb unordered map in gdb_bfd.c This changes gdb_bfd.c to use gdb:unordered_map. Approved-By: Simon Marchi --- gdb/gdb_bfd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb') diff --git a/gdb/gdb_bfd.c b/gdb/gdb_bfd.c index c233551..8380c53 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. */ -- cgit v1.1