Merge pull request #5860 from sloriot/NT-clean_up_wa

Remove no longer needed __builtin_sqrt workaround
This commit is contained in:
Laurent Rineau 2021-07-27 15:52:26 +02:00
commit e655de65a4
1 changed files with 0 additions and 5 deletions

View File

@ -327,11 +327,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)
{