From cc0420a658ccd317a9ad6f4c0e776f42f012965f Mon Sep 17 00:00:00 2001 From: Mael Date: Thu, 16 Apr 2020 19:14:11 +0200 Subject: [PATCH] Fix namespace --- Point_set_processing_3/include/CGAL/cluster_point_set.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Point_set_processing_3/include/CGAL/cluster_point_set.h b/Point_set_processing_3/include/CGAL/cluster_point_set.h index 16b394c482f..7da96d2bfba 100644 --- a/Point_set_processing_3/include/CGAL/cluster_point_set.h +++ b/Point_set_processing_3/include/CGAL/cluster_point_set.h @@ -114,7 +114,7 @@ std::size_t cluster_point_set (PointRange& points, // basic geometric types typedef typename PointRange::iterator iterator; typedef typename iterator::value_type value_type; - typedef typename Point_set_processing_3::GetPointMap::type PointMap; + typedef typename CGAL::GetPointMap::type PointMap; typedef typename Point_set_processing_3::GetK::Kernel Kernel; typedef typename Point_set_processing_3::GetAdjacencies::type Adjacencies; typedef typename GetSvdTraits::type SvdTraits;