diff options
author | Tom Tromey <tom@tromey.com> | 2025-03-11 13:49:30 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2025-03-18 05:32:04 -0600 |
commit | 4d5ced441ab9598001f9ce1e2b61370dd036138f (patch) | |
tree | 4e8b8a28aac13ced23dc54f34a33f77b2339d60b /gdb/unittests/command-def-selftests.c | |
parent | b91c25f6cd62985aa9600cc7451d717456b2a573 (diff) | |
download | binutils-4d5ced441ab9598001f9ce1e2b61370dd036138f.zip binutils-4d5ced441ab9598001f9ce1e2b61370dd036138f.tar.gz binutils-4d5ced441ab9598001f9ce1e2b61370dd036138f.tar.bz2 |
Use gdb unordered set and map in unit tests
This changes some unit test code to use gdb:unordered_set and
gdb::unordered_map.
Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/unittests/command-def-selftests.c')
-rw-r--r-- | gdb/unittests/command-def-selftests.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/unittests/command-def-selftests.c b/gdb/unittests/command-def-selftests.c index cf51f0d..1579511 100644 --- a/gdb/unittests/command-def-selftests.c +++ b/gdb/unittests/command-def-selftests.c @@ -20,8 +20,7 @@ #include "cli/cli-cmds.h" #include "cli/cli-decode.h" #include "gdbsupport/selftest.h" - -#include <map> +#include "gdbsupport/unordered_map.h" namespace selftests { @@ -134,7 +133,7 @@ static unsigned int nr_invalid_prefixcmd = 0; /* A map associating a list with the prefix leading to it. */ -static std::map<cmd_list_element **, const char *> lists; +static gdb::unordered_map<cmd_list_element **, const char *> lists; /* Store each command list in lists, associated with the prefix to reach it. A list must only be found once. |