Skip to content

Commit

Permalink
[libc++][ci] Removes C++2b selection option.
Browse files Browse the repository at this point in the history
Since Clang 16 is no longer supported all compilers support C++23.
  • Loading branch information
mordante authored and ldionne committed Sep 16, 2024
1 parent 09e3a36 commit acbaac8
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions libcxx/utils/libcxx/test/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,6 @@
def getStdFlag(cfg, std):
if hasCompileFlag(cfg, "-std=" + std):
return "-std=" + std
# TODO(LLVM-19) Remove the fallbacks needed for Clang 16.
fallbacks = {
"c++23": "c++2b",
}
if std in fallbacks and hasCompileFlag(cfg, "-std=" + fallbacks[std]):
return "-std=" + fallbacks[std]
return None


Expand Down

0 comments on commit acbaac8

Please sign in to comment.