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 0a35dd7 commit 1847b00Copy full SHA for 1847b00
libcxx/utils/libcxx/test/params.py
@@ -83,12 +83,6 @@
83
def getStdFlag(cfg, std):
84
if hasCompileFlag(cfg, "-std=" + std):
85
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]
92
return None
93
94
0 commit comments