Merge commit 'a695dadce25bdb17da3d297bd07e0d7873b64d4b'

This commit is contained in:
Darth Vader 2023-03-08 19:58:12 +00:00
commit 84f3957bc8

View File

@ -1846,7 +1846,7 @@ isfinite handling
# if __GNUC__ && (__cplusplus >= 201103L)
# define PHR_ISFINITE(x) std::isfinite(x)
# else
# define PHR_ISFINITE(x) isfinite(x)
# define PHR_ISFINITE(x) std::isfinite(x) /* changed when <math.h> was changed to <cmath> */
# endif
#elif defined(HAVE_FINITE)
# define PHR_ISFINITE(x) finite(x)