diff options
Diffstat (limited to 'gdb/ada-exp.y')
-rw-r--r-- | gdb/ada-exp.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/ada-exp.y b/gdb/ada-exp.y index cffeada..1546ae9 100644 --- a/gdb/ada-exp.y +++ b/gdb/ada-exp.y @@ -1,5 +1,5 @@ /* YACC parser for Ada expressions, for GDB. - Copyright (C) 1986-2024 Free Software Foundation, Inc. + Copyright (C) 1986-2025 Free Software Foundation, Inc. This file is part of GDB. @@ -36,7 +36,7 @@ %{ #include <ctype.h> -#include <unordered_map> +#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<ada_assign_up> assignments; /* Track currently active iterated assignment names. */ - std::unordered_map<std::string, std::vector<ada_index_var_operation *>> + gdb::unordered_map<std::string, std::vector<ada_index_var_operation *>> iterated_associations; auto_obstack temp_space; |