From 4d2480ffe08f5ea3a63782aba90f72b2e9b741fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20M=C3=B6ller?= Date: Tue, 6 Dec 2011 16:37:04 +0000 Subject: [PATCH] Adjusted typedef to actually be a value instead of a reference --- Spatial_searching/include/CGAL/Fuzzy_iso_box.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Spatial_searching/include/CGAL/Fuzzy_iso_box.h b/Spatial_searching/include/CGAL/Fuzzy_iso_box.h index da1896e4403..03d8b34697e 100644 --- a/Spatial_searching/include/CGAL/Fuzzy_iso_box.h +++ b/Spatial_searching/include/CGAL/Fuzzy_iso_box.h @@ -57,7 +57,9 @@ namespace CGAL { private: - typename Construct_min_vertex_d::result_type min, max; + typename boost::remove_cv< + typename boost::remove_reference< typename Construct_min_vertex_d::result_type >::type + >::type min, max; Cartesian_const_iterator_d min_begin, max_begin; FT eps; unsigned int dim;