[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.
This commit is contained in:
Louis Dionne 2023-11-09 14:55:20 -10:00 committed by GitHub
parent 444cb2f332
commit ea89965b3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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