corrected bug in leda_rational specialization/overload

This commit is contained in:
Peter Hachenberger 2006-02-16 18:12:49 +00:00
parent f99b9ccc26
commit 80d5c57bbc
1 changed files with 4 additions and 0 deletions

View File

@ -231,6 +231,10 @@ class Normalizing<Cartesian_tag> {
return c;
}
#ifdef CGAL_USE_LEDA
static CGAL::Plane_3<leda_rational> normalized(CGAL::Plane<leda_rational>& h);
#endif
template <typename R> static
CGAL::Plane_3<R> normalized(CGAL::Plane_3<R>& h) {
CGAL_assertion(!(h.a()==0 && h.b()==0 && h.c()==0 && h.d()==0));