diff --git a/Hash_map/include/CGAL/Unique_hash_map.h b/Hash_map/include/CGAL/Unique_hash_map.h index d0419884522..82d749be65c 100644 --- a/Hash_map/include/CGAL/Unique_hash_map.h +++ b/Hash_map/include/CGAL/Unique_hash_map.h @@ -144,13 +144,18 @@ namespace boost { return (*m_c)[k]; } - friend const ValueType& get(const associative_property_map >& uhm, const KeyType& key) + friend + const value_type& + get(const associative_property_map >& uhm, + const key_type& key) { return uhm[key]; } friend - void put(associative_property_map >& uhm, const KeyType& key, const ValueType& val) + void + put(associative_property_map >& uhm, + const key_type& key, const value_type& val) { uhm[key] = val; }