From cd95c341daf99dba7dc4380ad7bcc58d83a0e405 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 3 Aug 2006 03:36:00 +0000 Subject: [PATCH] fix min/max problem --- .../Min_sphere_of_spheres_d_support_set_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Min_sphere_of_spheres_d/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_support_set_impl.h b/Min_sphere_of_spheres_d/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_support_set_impl.h index e094ce5396b..c7f492ab7f6 100644 --- a/Min_sphere_of_spheres_d/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_support_set_impl.h +++ b/Min_sphere_of_spheres_d/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_support_set_impl.h @@ -80,7 +80,7 @@ namespace CGAL_MINIBALL_NAMESPACE { } // compute maxradius[m]: - maxradius[m] = std::max(maxradius[m-1],t.radius(*b[m])); + maxradius[m] = (std::max)(maxradius[m-1],t.radius(*b[m])); // calculate delta[m], eps[m] and phi[m] (by definition): const FT t1 = t.radius(*b[0]) - t.radius(*b[m]),