Skip to content

Commit 503687a

Browse files
committed
Fix ifdef.
1 parent 0c53bce commit 503687a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
// TODO: https://github.com/llvm/llvm-project/issues/80195
1515
// Check _Float128 C23 type detection again when clang supports it.
16-
#if (__STDC_IEC_60559_BFP__)
16+
#ifdef __STDC_IEC_60559_BFP__
1717
// Use _Float128 C23 type.
1818
#define LIBC_COMPILER_HAS_C23_FLOAT128
1919
typedef _Float128 float128;

0 commit comments

Comments
 (0)