diff options
author | Alexander Shadchin <shadchin@yandex-team.ru> | 2022-03-31 11:43:41 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-31 11:43:41 +0300 |
commit | ea943b415ad5923058280aa8866f10ab432eb2e6 (patch) | |
tree | 08691c142ac92070006447a90bd21817f3a71374 | |
parent | 41cf10dcb6ab46064d73f2c054e618c76c3cfabc (diff) | |
download | numpy-ea943b415ad5923058280aa8866f10ab432eb2e6.tar.gz |
MAINT: Fix typos
-rw-r--r-- | numpy/core/src/npymath/npy_math_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/src/npymath/npy_math_private.h b/numpy/core/src/npymath/npy_math_private.h index 7ca0c5ba0..a474b3de3 100644 --- a/numpy/core/src/npymath/npy_math_private.h +++ b/numpy/core/src/npymath/npy_math_private.h @@ -514,7 +514,7 @@ typedef union { typedef union { npy_cdouble npy_z; #ifdef __cplusplus - std::complex<double> c99z; + std::complex<double> c99_z; #else complex double c99_z; #endif @@ -523,7 +523,7 @@ typedef union { typedef union { npy_cfloat npy_z; #ifdef __cplusplus - std::complex<float> c99z; + std::complex<float> c99_z; #else complex float c99_z; #endif |