diff options
Diffstat (limited to 'gcc/hash-map.h')
-rw-r--r-- | gcc/hash-map.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/hash-map.h b/gcc/hash-map.h index cd97d35..59794eb 100644 --- a/gcc/hash-map.h +++ b/gcc/hash-map.h @@ -169,7 +169,8 @@ public: /* Call the call back on each pair of key and value with the passed in arg. */ - template<typename Arg, bool (*f)(const Key &, const Value &, Arg)> + template<typename Arg, bool (*f)(const typename Traits::key_type &, + const Value &, Arg)> void traverse (Arg a) const { for (typename hash_table<hash_entry>::iterator iter = m_table.begin (); @@ -177,7 +178,8 @@ public: f ((*iter).m_key, (*iter).m_value, a); } - template<typename Arg, bool (*f)(const Key &, Value *, Arg)> + template<typename Arg, bool (*f)(const typename Traits::key_type &, + Value *, Arg)> void traverse (Arg a) const { for (typename hash_table<hash_entry>::iterator iter = m_table.begin (); |