From ea89965b3cfcb00a08941780da45c663cb4a6cab Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Thu, 9 Nov 2023 14:55:20 -1000 Subject: [PATCH] [libc++] Update Clang version check in __config (#71849) We only support Clang >= 16, but we seem to have forgotten to update the version check in __config to reflect that. --- libcxx/include/__config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcxx/include/__config b/libcxx/include/__config index 39148ae2b184..4412deb930cb 100644 --- a/libcxx/include/__config +++ b/libcxx/include/__config @@ -33,8 +33,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 < 1500 -# warning "Libc++ only supports Clang 15 and later" +# if _LIBCPP_CLANG_VER < 1600 +# warning "Libc++ only supports Clang 16 and later" # endif # elif defined(_LIBCPP_APPLE_CLANG_VER) # if _LIBCPP_APPLE_CLANG_VER < 1500