[libc-commits] [libc] [libc] Exclude Fuchsia from float128 detection (PR #73985)

Petr Hosek via libc-commits libc-commits at lists.llvm.org
Thu Nov 30 13:05:48 PST 2023


================
@@ -37,4 +37,8 @@
 #endif
 #endif
 
+#if (defined(__Fuchsia__))
----------------
petrhosek wrote:

This just a nit, but there's no need for the outer parentheses:
```
#if defined(__Fuchsia__)
```

https://github.com/llvm/llvm-project/pull/73985


More information about the libc-commits mailing list