From 6575fdb2e82631bb7048a6728fe87370d6d9f53a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Tayeb?= Date: Thu, 30 Apr 2009 14:06:46 +0000 Subject: [PATCH] Fix compilation error. --- AABB_tree/include/CGAL/AABB_traits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AABB_tree/include/CGAL/AABB_traits.h b/AABB_tree/include/CGAL/AABB_traits.h index d5e0491feb6..2e7dcba91fb 100644 --- a/AABB_tree/include/CGAL/AABB_traits.h +++ b/AABB_tree/include/CGAL/AABB_traits.h @@ -49,7 +49,7 @@ public: typedef typename GeomTraits::Point_3 Projection; // TOFIX: Workaround for weighted_point #ifndef AABB_KERNEL_USE_WEIGHTED_POINT - typedef typename GeomTraits::Point Intersection; + typedef typename GeomTraits::Point_3 Intersection; #else typedef typename GeomTraits::Point_3::Point Intersection; #endif