summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Shadchin <shadchin@yandex-team.ru>2022-03-31 11:43:41 +0300
committerCharles Harris <charlesr.harris@gmail.com>2022-03-31 13:23:40 -0600
commit3e65b5a9bff5c58c3df204c09b45a1c0fd07c501 (patch)
tree6ec4964de21f2390b26b965aeb18614b49dd3a6c
parentc25bdc974d86086bddfbd4fed4463ff1e1712bd7 (diff)
downloadnumpy-3e65b5a9bff5c58c3df204c09b45a1c0fd07c501.tar.gz
MAINT: Fix typos
-rw-r--r--numpy/core/src/npymath/npy_math_private.h4
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