We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a677217 commit 3db0e82Copy full SHA for 3db0e82
pandas/src/headers/math.h
@@ -1,7 +1,7 @@
1
#ifndef _PANDAS_MATH_H_
2
#define _PANDAS_MATH_H_
3
4
-#if defined(_MSC_VER)
+#if defined(_MSC_VER) && (_MSC_VER < 1800)
5
#include <math.h>
6
__inline int signbit(double num) { return _copysign(1.0, num) < 0; }
7
#else
pandas/src/headers/stdint.h
#ifndef _PANDAS_STDINT_H_
#define _PANDAS_STDINT_H_
+#if defined(_MSC_VER) && (_MSC_VER < 1900)
#include "ms_stdint.h"
#include <stdint.h>
pandas/src/msgpack/pack.h
@@ -26,7 +26,7 @@
26
extern "C" {
27
#endif
28
29
-#ifdef _MSC_VER
30
#define inline __inline
31
32
0 commit comments