From d0ed7bf67d1ef37e48e3886c0278d6b8af23d0ec Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 11 Mar 2025 09:37:27 -0600 Subject: [PATCH] Use gdb unordered map in ada-exp.y This changes ada-exp.y to use gdb::unordered_map. Approved-By: Simon Marchi --- gdb/ada-exp.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdb/ada-exp.y b/gdb/ada-exp.y index cffeada7695..b25639ecafb 100644 --- a/gdb/ada-exp.y +++ b/gdb/ada-exp.y @@ -36,7 +36,7 @@ %{ #include -#include +#include "gdbsupport/unordered_map.h" #include "expression.h" #include "value.h" #include "parser-defs.h" @@ -98,7 +98,7 @@ struct ada_parse_state std::vector assignments; /* Track currently active iterated assignment names. */ - std::unordered_map> + gdb::unordered_map> iterated_associations; auto_obstack temp_space; -- 2.39.5