From 0f97115ce8628ceaa832e78e4cda7f4975f72715 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Mon, 24 Oct 2016 10:31:53 +0200 Subject: [PATCH] Polish --- Hash_map/include/CGAL/Unique_hash_map.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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; }