[libc-commits] [libc] [libc] Remove obsolete LIBC_HAS_BUILTIN macro (PR #86554)

Nick Desaulniers via libc-commits libc-commits at lists.llvm.org
Mon Mar 25 13:20:17 PDT 2024


================
@@ -17,7 +17,7 @@
 namespace LIBC_NAMESPACE::cpp {
 
 // is_lvalue_reference
-#if LIBC_HAS_BUILTIN(__is_lvalue_reference)
+#if __has_builtin(__is_lvalue_reference)
----------------
nickdesaulniers wrote:

We no longer need to include src/__support/macros/config.h here thanks to this change.

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


More information about the libc-commits mailing list