Skip to content

Commit f07157e

Browse files
committed
Fixup 7457e2c by adding a switch case
This fixups 7457e2c as I forgot one switch to update, which then broke this build bot: https://lab.llvm.org/buildbot/#/builders/57/builds/33272
1 parent d2c49f1 commit f07157e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

clang/unittests/AST/MatchVerifier.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ MatchVerifier<NodeType>::match(const std::string &Code,
116116
Args.push_back("-std=c++20");
117117
FileName = "input.cc";
118118
break;
119+
case Lang_CXX23:
120+
Args.push_back("-std=c++23");
121+
FileName = "input.cc";
122+
break;
119123
case Lang_OpenCL:
120124
Args.push_back("-cl-no-stdinc");
121125
FileName = "input.cl";

0 commit comments

Comments
 (0)