[libcxx-commits] [libcxx] [libc++] Removes Clang-16 support. (PR	#87810)
    Louis Dionne via libcxx-commits 
    libcxx-commits at lists.llvm.org
       
    Tue Apr  9 08:02:41 PDT 2024
    
    
  
================
@@ -44,8 +44,8 @@
 // Warn if a compiler version is used that is not supported anymore
 // LLVM RELEASE Update the minimum compiler versions
 #  if defined(_LIBCPP_CLANG_VER)
-#    if _LIBCPP_CLANG_VER < 1600
-#      warning "Libc++ only supports Clang 16 and later"
+#    if _LIBCPP_CLANG_VER < 1700
----------------
ldionne wrote:
There are also some `_LIBCPP_CLANG_VER >= 1700` checks we could simplify.
https://github.com/llvm/llvm-project/pull/87810
    
    
More information about the libcxx-commits
mailing list