From e8993704e7e360bfa856e8dbb012db36b86c5ba5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Tue, 20 Jul 2021 12:09:55 +0200 Subject: [PATCH] remove no longer needed workaround it breaks code using the intel compiler on windows --- Number_types/include/CGAL/FPU.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Number_types/include/CGAL/FPU.h b/Number_types/include/CGAL/FPU.h index 6d5f02a3075..a9acf8c6057 100644 --- a/Number_types/include/CGAL/FPU.h +++ b/Number_types/include/CGAL/FPU.h @@ -326,11 +326,6 @@ inline double IA_bug_sqrt(double d) } # define CGAL_BUG_SQRT(d) IA_bug_sqrt(d) - - -#elif defined __SSE2_MATH__ -// For SSE2, we need to call __builtin_sqrt() instead of libc's sqrt(). -# define CGAL_BUG_SQRT(d) __builtin_sqrt(d) #elif defined __CYGWIN__ inline double IA_bug_sqrt(double d) {