this range-based for loop.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@218011
91177308-0d34-0410-b5e6-
96231b3b80d8
}
auto *T = Proto.getTypePtr();
- for (const auto &E : T->exceptions())
+ for (const auto &E : T->exceptions()) {
TRY_TO(TraverseType(E));
+ }
if (Expr *NE = T->getNoexceptExpr())
TRY_TO(TraverseStmt(NE));
}
auto *T = Proto.getTypePtr();
- for (const auto &E : T->exceptions())
+ for (const auto &E : T->exceptions()) {
TRY_TO(TraverseType(E));
+ }
if (Expr *NE = T->getNoexceptExpr())
TRY_TO(TraverseStmt(NE));