Skip to content

Commit f8532c4

Browse files
committed
[libc++][ci] Removes C++2b selection option.
Since Clang 16 is no longer supported all compilers support C++23.
1 parent dcb7f44 commit f8532c4

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

libcxx/utils/libcxx/test/params.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,6 @@
7979
def getStdFlag(cfg, std):
8080
if hasCompileFlag(cfg, "-std=" + std):
8181
return "-std=" + std
82-
# TODO(LLVM-19) Remove the fallbacks needed for Clang 16.
83-
fallbacks = {
84-
"c++23": "c++2b",
85-
}
86-
if std in fallbacks and hasCompileFlag(cfg, "-std=" + fallbacks[std]):
87-
return "-std=" + fallbacks[std]
8882
return None
8983

9084

0 commit comments

Comments
 (0)