We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcb7f44 commit f8532c4Copy full SHA for f8532c4
libcxx/utils/libcxx/test/params.py
@@ -79,12 +79,6 @@
79
def getStdFlag(cfg, std):
80
if hasCompileFlag(cfg, "-std=" + std):
81
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]
88
return None
89
90
0 commit comments