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 80b1336 commit a19783cCopy full SHA for a19783c
numexpr/msvc_function_stubs.hpp
@@ -54,8 +54,9 @@ inline bool isfinitef_(float x) { return !!::_finite(x); } // MSVC has _finite
54
inline bool isnanf_(float x) { return !!::_isnan(x); } // MSVC has _isnan
55
inline bool isfinited(double x) { return !!::_finite(x); }
56
inline bool isnand(double x) { return !!::_isnan(x); }
57
-inline bool isinfd(double x) { return !!::_isinf(x); }
58
-inline bool isinff_(float x) { return !!::_isinf(x); }
+
+inline bool isinfd(double x) { return !!::isinf(x)(x); }
59
+inline bool isinff_(float x) { return !!::isinf(x)(x); }
60
61
/* Now the actual stubs */
62
0 commit comments