File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ template <> struct make_complex<float16> {
3636 using type = cfloat16;
3737};
3838#endif
39- #if defined(LIBC_TYPES_HAS_CFLOAT128) && !defined(LIBC_TYPES_LONG_DOUBLE_IS_FLOAT128)
39+ #if defined(LIBC_TYPES_HAS_CFLOAT128) && \
40+ !defined (LIBC_TYPES_LONG_DOUBLE_IS_FLOAT128)
4041template <> struct make_complex <float128> {
4142 using type = cfloat128;
4243};
@@ -61,7 +62,8 @@ template <> struct make_real<cfloat16> {
6162 using type = float16;
6263};
6364#endif
64- #if defined(LIBC_TYPES_HAS_CFLOAT128) && !defined(LIBC_TYPES_CFLOAT128_IS_COMPLEX_LONG_DOUBLE)
65+ #if defined(LIBC_TYPES_HAS_CFLOAT128) && \
66+ !defined (LIBC_TYPES_CFLOAT128_IS_COMPLEX_LONG_DOUBLE)
6567template <> struct make_real <cfloat128> {
6668 using type = float128;
6769};
You can’t perform that action at this time.
0 commit comments