aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Dionne <ldionne.2@gmail.com>2020-12-01 16:49:48 -0500
committerLouis Dionne <ldionne.2@gmail.com>2020-12-01 16:51:25 -0500
commit2671fccf0381769276ca8246ec0499adcb9b0355 (patch)
treeb9476f7fb953e98d571300dfcf3094a5f1426306
parent[LLD][ELF][NewPM] Add option to force legacy PM (diff)
downloadllvm-project-2671fccf0381769276ca8246ec0499adcb9b0355.tar.gz
llvm-project-2671fccf0381769276ca8246ec0499adcb9b0355.tar.bz2
llvm-project-2671fccf0381769276ca8246ec0499adcb9b0355.zip
[libc++] NFC: Remove unused macros in <__config>
-rw-r--r--libcxx/include/__config8
1 files changed, 0 insertions, 8 deletions
diff --git a/libcxx/include/__config b/libcxx/include/__config
index 0b850f192d54..1a206680ecdc 100644
--- a/libcxx/include/__config
+++ b/libcxx/include/__config
@@ -442,10 +442,6 @@ typedef __char32_t char32_t;
# define _LIBCPP_NORETURN __attribute__ ((noreturn))
#endif
-#if !(__has_feature(cxx_lambdas))
-#define _LIBCPP_HAS_NO_LAMBDAS
-#endif
-
#if !(__has_feature(cxx_nullptr))
# if (__has_extension(cxx_nullptr) || __has_keyword(__nullptr)) && defined(_LIBCPP_ABI_ALWAYS_USE_CXX11_NULLPTR)
# define nullptr __nullptr
@@ -454,10 +450,6 @@ typedef __char32_t char32_t;
# endif
#endif
-#if !(__has_feature(cxx_auto_type))
-#define _LIBCPP_HAS_NO_AUTO_TYPE
-#endif
-
// Objective-C++ features (opt-in)
#if __has_feature(objc_arc)
#define _LIBCPP_HAS_OBJC_ARC