From: Tom Tromey Date: Tue, 11 Mar 2025 15:37:27 +0000 (-0600) Subject: Use gdb unordered map in ada-exp.y X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d0ed7bf67d1ef37e48e3886c0278d6b8af23d0ec;p=thirdparty%2Fbinutils-gdb.git Use gdb unordered map in ada-exp.y This changes ada-exp.y to use gdb::unordered_map. Approved-By: Simon Marchi --- 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;