From 91bf02acc1d5d9aa50e6a8d9de7457cdf8bcc291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Tue, 12 Jun 2012 12:04:09 +0000 Subject: [PATCH] missing typename --- .../include/CGAL/Surface_mesh_segmentation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Surface_mesh_segmentation/include/CGAL/Surface_mesh_segmentation.h b/Surface_mesh_segmentation/include/CGAL/Surface_mesh_segmentation.h index f1587fb2885..d27e7b75253 100644 --- a/Surface_mesh_segmentation/include/CGAL/Surface_mesh_segmentation.h +++ b/Surface_mesh_segmentation/include/CGAL/Surface_mesh_segmentation.h @@ -500,7 +500,7 @@ void Surface_mesh_segmentation::arrange_center_orientation( //Option-3 Ray ray(center, unit_normal); - Kernel::Do_intersect_3 intersector = Kernel().do_intersect_3_object(); + typename Kernel::Do_intersect_3 intersector = Kernel().do_intersect_3_object(); if(!intersector(ray, plane)) { return; }