[libcxx-commits] [libcxx] b177a9b - [libc++][NFC] Remove _LIBCPP_HAS_NO_NOEXCEPT
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Sep 21 09:39:57 PDT 2024
Author: Nikolas Klauser
Date: 2024-09-21T18:39:21+02:00
New Revision: b177a9b6efb64d1683ea13adc4eb2105fdeae224
URL: https://github.com/llvm/llvm-project/commit/b177a9b6efb64d1683ea13adc4eb2105fdeae224
DIFF: https://github.com/llvm/llvm-project/commit/b177a9b6efb64d1683ea13adc4eb2105fdeae224.diff
LOG: [libc++][NFC] Remove _LIBCPP_HAS_NO_NOEXCEPT
This macro is never used, so we can drop the definition of it too.
Added:
Modified:
libcxx/include/__config
Removed:
################################################################################
diff --git a/libcxx/include/__config b/libcxx/include/__config
index ff5e3cf5faf0e0..f90c966aad6950 100644
--- a/libcxx/include/__config
+++ b/libcxx/include/__config
@@ -302,7 +302,6 @@ _LIBCPP_HARDENING_MODE_DEBUG
# define _LIBCPP_ALIGNOF(_Tp) _Alignof(_Tp)
# define _ALIGNAS_TYPE(x) __attribute__((__aligned__(_LIBCPP_ALIGNOF(x))))
# define _ALIGNAS(x) __attribute__((__aligned__(x)))
-# define _LIBCPP_HAS_NO_NOEXCEPT
# define nullptr __nullptr
# define _NOEXCEPT throw()
# define _NOEXCEPT_(...)
More information about the libcxx-commits
mailing list