Skip to content

Commit 27254eb

Browse files
committed
fmt
1 parent 7dcf156 commit 27254eb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc/include/llvm-libc-types/cfloat128.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ typedef _Complex _Float128 cfloat128;
2626
#define LIBC_TYPES_HAS_CFLOAT128
2727
typedef _Complex _Float128 cfloat128;
2828
#endif
29-
#elif __clang_major__ >= 11 && (defined(__FLOAT128__) || defined(__SIZEOF_FLOAT128__))
29+
#elif __clang_major__ >= 11 && \
30+
(defined(__FLOAT128__) || defined(__SIZEOF_FLOAT128__))
3031
// Use _Complex __float128 type. clang uses __SIZEOF_FLOAT128__ or __FLOAT128__
3132
// macro to notify the availability of __float128 type:
3233
// https://reviews.llvm.org/D15120

0 commit comments

Comments
 (0)