Skip to content

Commit

Permalink
Merge pull request #21275 from charris/backport-21272
Browse files Browse the repository at this point in the history
BUG: Fix typos
  • Loading branch information
charris committed Mar 31, 2022
2 parents 966e7a7 + 3e65b5a commit eb99339
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numpy/core/src/npymath/npy_math_private.h
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit eb99339

Please sign in to comment.