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 a19783c commit d8a42ffCopy full SHA for d8a42ff
numexpr/msvc_function_stubs.hpp
@@ -54,9 +54,8 @@ 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
-
58
-inline bool isinfd(double x) { return !!::isinf(x)(x); }
59
-inline bool isinff_(float x) { return !!::isinf(x)(x); }
+inline bool isinfd(double x) { return !!::isinf(x); }
+inline bool isinff_(float x) { return !!::isinf(x); }
60
61
/* Now the actual stubs */
62
0 commit comments