one less warning for VC++

This commit is contained in:
Andreas Fabri 2008-11-25 11:20:08 +00:00
parent 401b3b0d5e
commit dafbd04e48
1 changed files with 1 additions and 1 deletions

View File

@ -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 <class FT>
double Tol (FT) {return 1.0+Eps_double;}
}