diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/mi/mi-cmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mi/mi-cmds.c b/gdb/mi/mi-cmds.c index 02d4dc3..6f39989 100644 --- a/gdb/mi/mi-cmds.c +++ b/gdb/mi/mi-cmds.c @@ -21,12 +21,12 @@ #include "mi-cmds.h" #include "mi-main.h" #include "mi-parse.h" -#include <map> +#include "gdbsupport/unordered_map.h" #include <string> /* MI command table (built at run time). */ -static std::map<std::string, mi_command_up> mi_cmd_table; +static gdb::unordered_map<std::string, mi_command_up> mi_cmd_table; /* MI command with a pure MI implementation. */ |