We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f739a6 commit 8decc5aCopy full SHA for 8decc5a
pandas/_libs/src/headers/cmath
@@ -6,7 +6,7 @@
6
#if defined(_MSC_VER) && (_MSC_VER < 1800)
7
#include <cmath>
8
namespace std {
9
- #define isnan(x) _isnan(x)
+ __inline int isnan(double x) { return _isnan(x); }
10
__inline int signbit(double num) { return _copysign(1.0, num) < 0; }
11
}
12
#else
0 commit comments