gribozavr2 marked an inline comment as done.
gribozavr2 added inline comments.
Comment at: clang/unittests/ASTMatchers/ASTMatchersTest.h:62
+inline ArrayRef langCxx11OrLater() {
+ static std::vector Result = {Lang_CXX11, Lang_CXX14,
Lang_CXX17,
+
njames93 added inline comments.
Comment at: clang/unittests/ASTMatchers/ASTMatchersTest.h:62
+inline ArrayRef langCxx11OrLater() {
+ static std::vector Result = {Lang_CXX11, Lang_CXX14,
Lang_CXX17,
+ Lang_CXX20};
Bit
This revision was automatically updated to reflect the committed changes.
Closed by commit rGb5fc1deb5ba1: Use libClangTesting in the unittest for AST
matchers (authored by gribozavr).
Changed prior to commit:
https://reviews.llvm.org/D81150?vs=268440&id=268495#toc
Repository:
rG LLVM Github
hlopko accepted this revision.
hlopko added a comment.
This revision is now accepted and ready to land.
Nice! :)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D81150/new/
https://reviews.llvm.org/D81150
___
gribozavr updated this revision to Diff 268440.
gribozavr added a comment.
Changed C++20-only tests to C++20-or-later.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D81150/new/
https://reviews.llvm.org/D81150
Files:
clang/include/clang/Testing/Co
gribozavr created this revision.
Herald added subscribers: cfe-commits, sstefan1, mgorny.
Herald added a reviewer: jdoerfert.
Herald added a project: clang.
The unittest for AST matchers has its own way to specify language
standards. I unified it with the shared infrastructure from
libClangTesting