From 80d5c57bbcc5edb464d0038a5bef83d7e442f61d Mon Sep 17 00:00:00 2001 From: Peter Hachenberger Date: Thu, 16 Feb 2006 18:12:49 +0000 Subject: [PATCH] corrected bug in leda_rational specialization/overload --- Nef_S2/include/CGAL/Nef_S2/Normalizing.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Nef_S2/include/CGAL/Nef_S2/Normalizing.h b/Nef_S2/include/CGAL/Nef_S2/Normalizing.h index d04e08b0f98..df5737ca3a3 100644 --- a/Nef_S2/include/CGAL/Nef_S2/Normalizing.h +++ b/Nef_S2/include/CGAL/Nef_S2/Normalizing.h @@ -231,6 +231,10 @@ class Normalizing { return c; } +#ifdef CGAL_USE_LEDA + static CGAL::Plane_3 normalized(CGAL::Plane& h); +#endif + template static CGAL::Plane_3 normalized(CGAL::Plane_3& h) { CGAL_assertion(!(h.a()==0 && h.b()==0 && h.c()==0 && h.d()==0));