Skip to content

Commit

Permalink
Fix2?
Browse files Browse the repository at this point in the history
  • Loading branch information
jhendersonHDF committed Jun 26, 2024
1 parent 76844fe commit 49328a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/H5Tconv_macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -881,15 +881,15 @@ typedef struct H5T_conv_hw_t {
#ifdef _MSC_VER
#define H5T_CONV_CAST_TO_FLOAT_COMPLEX(S_REAL, S_IMAG, D, DT) \
{ \
*(D) = (DT)H5_CMPLXF(S_REAL, S_IMAG); \
*(D) = H5_CMPLXF(S_REAL, S_IMAG); \
}
#define H5T_CONV_CAST_TO_DOUBLE_COMPLEX(S_REAL, S_IMAG, D, DT) \
{ \
*(D) = (DT)H5_CMPLX(S_REAL, S_IMAG); \
*(D) = H5_CMPLX(S_REAL, S_IMAG); \
}
#define H5T_CONV_CAST_TO_LDOUBLE_COMPLEX(S_REAL, S_IMAG, D, DT) \
{ \
*(D) = (DT)H5_CMPLXL(S_REAL, S_IMAG); \
*(D) = H5_CMPLXL(S_REAL, S_IMAG); \
}

#define H5T_CONV_CAST_zZ(STYPE, DTYPE, S, S_REAL, S_IMAG, D, ST, DT) \
Expand Down

0 comments on commit 49328a3

Please sign in to comment.