Skip to content

Commit 6054249

Browse files
committed
fmt
1 parent 59f6fe5 commit 6054249

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libc/src/__support/complex_type.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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)
4041
template <> 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)
6567
template <> struct make_real<cfloat128> {
6668
using type = float128;
6769
};

0 commit comments

Comments
 (0)