[PATCH] D90982: Ignore implicit nodes in IgnoreUnlessSpelledInSource mode
Aaron Ballman via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Nov 17 07:19:12 PST 2020
aaron.ballman accepted this revision.
aaron.ballman added a comment.
This revision is now accepted and ready to land.
LGTM, thank you!
================
Comment at: clang/lib/ASTMatchers/ASTMatchFinder.cpp:164
auto *LambdaNode = dyn_cast_or_null<LambdaExpr>(StmtNode);
- if (LambdaNode && !Finder->isTraversalAsIs())
+ if (LambdaNode && Finder->isTraversalIgnoringImplicitNodes())
StmtToTraverse = LambdaNode;
----------------
Good catch!
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D90982/new/
https://reviews.llvm.org/D90982
More information about the cfe-commits
mailing list