We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f365482 commit 6300317Copy full SHA for 6300317
2 files changed
src/macros.h
@@ -331,7 +331,7 @@
331
# if defined(WIN32)
332
# ifndef isnan
333
# define isnan(x) _isnan(x)
334
-# define isinf(x) (!_finite(x) && !_isnan(x))
+ static inline int isinf(double x) { return !_finite(x) && !_isnan(x); }
335
# endif
336
# else
337
# ifndef HAVE_ISNAN
src/version.c
@@ -743,6 +743,8 @@ static char *(features[]) =
743
744
static int included_patches[] =
745
{ /* Add new patch number below this line */
746
+/**/
747
+ 1487,
748
/**/
749
1486,
750
0 commit comments