Skip to content

Commit 1847b00

Browse files
authored
[libc++][ci] Removes C++2b selection option. (#88557)
Since Clang 16 is no longer supported all compilers support C++23.
1 parent 0a35dd7 commit 1847b00

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
@@ -83,12 +83,6 @@
8383
def getStdFlag(cfg, std):
8484
if hasCompileFlag(cfg, "-std=" + std):
8585
return "-std=" + std
86-
# TODO(LLVM-19) Remove the fallbacks needed for Clang 16.
87-
fallbacks = {
88-
"c++23": "c++2b",
89-
}
90-
if std in fallbacks and hasCompileFlag(cfg, "-std=" + fallbacks[std]):
91-
return "-std=" + fallbacks[std]
9286
return None
9387

9488

0 commit comments

Comments
 (0)