Skip to content

Commit ea89965

Browse files
authored
[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.
1 parent 444cb2f commit ea89965

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/include/__config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
// Warn if a compiler version is used that is not supported anymore
3434
// LLVM RELEASE Update the minimum compiler versions
3535
# if defined(_LIBCPP_CLANG_VER)
36-
# if _LIBCPP_CLANG_VER < 1500
37-
# warning "Libc++ only supports Clang 15 and later"
36+
# if _LIBCPP_CLANG_VER < 1600
37+
# warning "Libc++ only supports Clang 16 and later"
3838
# endif
3939
# elif defined(_LIBCPP_APPLE_CLANG_VER)
4040
# if _LIBCPP_APPLE_CLANG_VER < 1500

0 commit comments

Comments
 (0)