From 88a8731ebf855c1e9a8b5b606ec3468cabb47cd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20M=C3=B6ller?= Date: Wed, 3 Oct 2012 10:14:08 +0000 Subject: [PATCH] locate is a dependent name and needs to be qualified to be found --- Alpha_shapes_2/include/CGAL/Alpha_shape_2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Alpha_shapes_2/include/CGAL/Alpha_shape_2.h b/Alpha_shapes_2/include/CGAL/Alpha_shape_2.h index 85b6fb811a8..3b42b8f24e6 100644 --- a/Alpha_shapes_2/include/CGAL/Alpha_shape_2.h +++ b/Alpha_shapes_2/include/CGAL/Alpha_shape_2.h @@ -591,7 +591,7 @@ public: // Classifies a point `p' with respect to `A'. Locate_type type; int i; - Face_handle pFace = locate(p, type, i); + Face_handle pFace = this->locate(p, type, i); switch (type) { case VERTEX : return classify(pFace->vertex(i), alpha);