aboutsummaryrefslogtreecommitdiff
path: root/gdb/regcache.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2023-09-11 08:45:37 -0600
committerTom Tromey <tromey@adacore.com>2023-09-11 11:40:40 -0600
commit9a343d2bb57c4555dedad9b43907aeeda7b51dae (patch)
tree3a230b77933274b6513b0a5d576565e36e6e7318 /gdb/regcache.c
parent14432bde076fdee66e6163993eadf592742935da (diff)
downloadgdb-9a343d2bb57c4555dedad9b43907aeeda7b51dae.zip
gdb-9a343d2bb57c4555dedad9b43907aeeda7b51dae.tar.gz
gdb-9a343d2bb57c4555dedad9b43907aeeda7b51dae.tar.bz2
Specialize std::hash for ptid_t
This changes hash_ptid to instead be a specialization of std::hash. This makes it a little easier to use with standard containers. Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/regcache.c')
-rw-r--r--gdb/regcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/regcache.c b/gdb/regcache.c
index 9b71931..91b20b7 100644
--- a/gdb/regcache.c
+++ b/gdb/regcache.c
@@ -329,7 +329,7 @@ reg_buffer::assert_regnum (int regnum) const
regcaches, associated to different gdbarches). */
using ptid_regcache_map
- = std::unordered_multimap<ptid_t, regcache_up, hash_ptid>;
+ = std::unordered_multimap<ptid_t, regcache_up>;
/* Type holding regcaches for a given pid. */