Skip to content

Commit d8a42ff

Browse files
committed
Fixes for windows
1 parent a19783c commit d8a42ff

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

numexpr/msvc_function_stubs.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@ inline bool isfinitef_(float x) { return !!::_finite(x); } // MSVC has _finite
5454
inline bool isnanf_(float x) { return !!::_isnan(x); } // MSVC has _isnan
5555
inline bool isfinited(double x) { return !!::_finite(x); }
5656
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); }
57+
inline bool isinfd(double x) { return !!::isinf(x); }
58+
inline bool isinff_(float x) { return !!::isinf(x); }
6059

6160
/* Now the actual stubs */
6261

0 commit comments

Comments
 (0)