From 96d65bcd0c6f709f18bd8e1e63f8b2dce1ce9ced Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Br=C3=B6nnimann?= Date: Tue, 7 Dec 1999 19:17:31 +0000 Subject: [PATCH] Need to qualify by CGAL:: (otherwise works with egcs, but not gcc-2.95) --- .../include/CGAL/Cartesian_dynamic_d.h | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Old_Packages/Cd/test/KernelCd/include/CGAL/Cartesian_dynamic_d.h b/Old_Packages/Cd/test/KernelCd/include/CGAL/Cartesian_dynamic_d.h index 31489eea4d0..844ea451602 100644 --- a/Old_Packages/Cd/test/KernelCd/include/CGAL/Cartesian_dynamic_d.h +++ b/Old_Packages/Cd/test/KernelCd/include/CGAL/Cartesian_dynamic_d.h @@ -151,17 +151,17 @@ struct Cartesian_dynamic_d // Point_d in the current namespace (nested within CGAL) and // CGAL::Point_d< Cartesian_d > (which is in the CGAL namespace) - typedef Point_d Point_d; - typedef Vector_d Vector_d; - typedef Direction_d Direction_d; - typedef Plane_d Plane_d; - typedef Line_d Line_d; - typedef Ray_d Ray_d; - typedef Segment_d Segment_d; - typedef Triangle_d Triangle_d; - typedef Tetrahedron_d Tetrahedron_d; - typedef Simplex_d Simplex_d; - typedef Aff_transformation_d Aff_transformation_d; + typedef CGAL::Point_d Point_d; + typedef CGAL::Vector_d Vector_d; + typedef CGAL::Direction_d Direction_d; + typedef CGAL::Plane_d Plane_d; + typedef CGAL::Line_d Line_d; + typedef CGAL::Ray_d Ray_d; + typedef CGAL::Segment_d Segment_d; + typedef CGAL::Triangle_d Triangle_d; + typedef CGAL::Tetrahedron_d Tetrahedron_d; + typedef CGAL::Simplex_d Simplex_d; + typedef CGAL::Aff_transformation_d Aff_transformation_d; // TODO: cleanup static FT make_FT(const RT & num, const RT& denom) { return num/denom;}