summaryrefslogtreecommitdiffstats
path: root/contrib/python
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python')
-rw-r--r--contrib/python/numpy/py3/numpy/core/src/npymath/npy_math_private.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/contrib/python/numpy/py3/numpy/core/src/npymath/npy_math_private.h b/contrib/python/numpy/py3/numpy/core/src/npymath/npy_math_private.h
index 7190c8a5a17..e1cff4a002b 100644
--- a/contrib/python/numpy/py3/numpy/core/src/npymath/npy_math_private.h
+++ b/contrib/python/numpy/py3/numpy/core/src/npymath/npy_math_private.h
@@ -504,29 +504,17 @@ do { \
#if !defined(__cplusplus) && defined(_MSC_VER) && !defined(__INTEL_COMPILER)
typedef union {
npy_cdouble npy_z;
-#ifdef __cplusplus
- std::complex<double> c99z;
-#else
_Dcomplex c99_z;
-#endif
} __npy_cdouble_to_c99_cast;
typedef union {
npy_cfloat npy_z;
-#ifdef __cplusplus
- std::complex<float> c99z;
-#else
_Fcomplex c99_z;
-#endif
} __npy_cfloat_to_c99_cast;
typedef union {
npy_clongdouble npy_z;
-#ifdef __cplusplus
- std::complex<long double> c99_z;
-#else
_Lcomplex c99_z;
-#endif
} __npy_clongdouble_to_c99_cast;
#else /* !_MSC_VER */
typedef union {