From dafbd04e487b8a00ec17dabaed40106b10e9d44e Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 25 Nov 2008 11:20:08 +0000 Subject: [PATCH] one less warning for VC++ --- .../CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_pair.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_pair.h b/Min_sphere_of_spheres_d/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_pair.h index ca22bdab1da..f1e67d763a2 100644 --- a/Min_sphere_of_spheres_d/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_pair.h +++ b/Min_sphere_of_spheres_d/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_pair.h @@ -31,7 +31,7 @@ namespace CGAL_MINIBALL_NAMESPACE { float SqrOfEps (float) {return 1.0e-14f;} double SqrOfEps (double) {return 1.0e-32;} - float Tol (float) {return 1.0+Eps_float;} + float Tol (float) {return 1.0f+Eps_float;} template double Tol (FT) {return 1.0+Eps_double;} }