From db3a8a802ed18f7f4fb99013ebc5f76f5dfdcdbc Mon Sep 17 00:00:00 2001 From: Susan Hert Date: Mon, 3 Dec 2001 11:11:41 +0000 Subject: [PATCH] fixed(?) the type Polyhedron_3 to work with SunPro's compiler --- Packages/Convex_hull_3/include/CGAL/Convex_hull_traits_3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Packages/Convex_hull_3/include/CGAL/Convex_hull_traits_3.h b/Packages/Convex_hull_3/include/CGAL/Convex_hull_traits_3.h index bd604cbcc3b..3944a89b422 100644 --- a/Packages/Convex_hull_3/include/CGAL/Convex_hull_traits_3.h +++ b/Packages/Convex_hull_3/include/CGAL/Convex_hull_traits_3.h @@ -56,7 +56,7 @@ class Convex_hull_traits_3 #if defined(__BORLANDC__) typedef Polyhedron_ Polyhedron_3; #else - typedef Polyhedron_3 Polyhedron_3; + typedef CGAL::Polyhedron_3 Polyhedron_3; #endif typedef typename R::Construct_segment_3 Construct_segment_3;