From 50e2539bd7892a3ff1b9e603bb7e8f18ee789e9c Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Mon, 22 Jun 2020 13:44:37 +0200 Subject: [PATCH] Add CGAL:: before compare() to avoid miximg up the functions --- Distance_3/include/CGAL/squared_distance_3_1.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Distance_3/include/CGAL/squared_distance_3_1.h b/Distance_3/include/CGAL/squared_distance_3_1.h index b212b25fa40..cc72bdbb35c 100644 --- a/Distance_3/include/CGAL/squared_distance_3_1.h +++ b/Distance_3/include/CGAL/squared_distance_3_1.h @@ -226,7 +226,7 @@ compare_distance_pssC3( } } } - return compare(d1*e2, d2*e1); + return CGAL::compare(d1*e2, d2*e1); } template @@ -262,7 +262,7 @@ compare_distance_ppsC3( } } } - return compare(d1*e2, d2); + return CGAL::compare(d1*e2, d2); }