[PATCH] D57106: [AST] Introduce GenericSelectionExpr::Association
Stephen Kelly via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 23 10:27:43 PST 2019
steveire added inline comments.
================
Comment at: lib/AST/ASTDumper.cpp:1465
- for (unsigned I = 0, N = E->getNumAssocs(); I != N; ++I) {
+ for (GenericSelectionExpr::ConstAssociation Assoc : E->associations()) {
dumpChild([=] {
----------------
Range for loops in this file generally use `auto`.
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D57106/new/
https://reviews.llvm.org/D57106
More information about the cfe-commits
mailing list