Skip to content

Commit 76330f9

Browse files
committed
Merge all pattern kinds into a single AST node
1 parent 8a4a548 commit 76330f9

File tree

16 files changed

+443
-514
lines changed

16 files changed

+443
-514
lines changed

clang/include/clang/AST/RecursiveASTVisitor.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3125,10 +3125,7 @@ DEF_TRAVERSE_STMT(RequiresExpr, {
31253125
TRY_TO(TraverseConceptRequirement(Req));
31263126
})
31273127

3128-
DEF_TRAVERSE_STMT(CXXEnumeratingExpansionStmtPattern, {})
3129-
DEF_TRAVERSE_STMT(CXXIteratingExpansionStmtPattern, {})
3130-
DEF_TRAVERSE_STMT(CXXDestructuringExpansionStmtPattern, {})
3131-
DEF_TRAVERSE_STMT(CXXDependentExpansionStmtPattern, {})
3128+
DEF_TRAVERSE_STMT(CXXExpansionStmtPattern, {})
31323129
DEF_TRAVERSE_STMT(CXXExpansionStmtInstantiation, {})
31333130
DEF_TRAVERSE_STMT(CXXExpansionInitListSelectExpr, {})
31343131
DEF_TRAVERSE_STMT(CXXDestructuringExpansionSelectExpr, {})

0 commit comments

Comments
 (0)