Skip to content

Commit

Permalink
Fixup 7457e2c by adding a switch case
Browse files Browse the repository at this point in the history
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
  • Loading branch information
steakhal committed Mar 8, 2024
1 parent d2c49f1 commit f07157e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions clang/unittests/AST/MatchVerifier.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ MatchVerifier<NodeType>::match(const std::string &Code,
Args.push_back("-std=c++20");
FileName = "input.cc";
break;
case Lang_CXX23:
Args.push_back("-std=c++23");
FileName = "input.cc";
break;
case Lang_OpenCL:
Args.push_back("-cl-no-stdinc");
FileName = "input.cl";
Expand Down

0 comments on commit f07157e

Please sign in to comment.