Revert commit 212599.

llvm-svn: 212600
This commit is contained in:
Alexey Bataev 2014-07-09 09:50:46 +00:00
parent e73fe94ac8
commit 3b2fb0af40
2 changed files with 2 additions and 4 deletions

View File

@ -2273,9 +2273,8 @@ DEF_TRAVERSE_STMT(AsTypeExpr, {})
template <typename Derived>
bool RecursiveASTVisitor<Derived>::TraverseOMPExecutableDirective(
OMPExecutableDirective *S) {
for (auto *C : S->clauses()) {
for (auto *C : S->clauses())
TRY_TO(TraverseOMPClause(C));
}
return true;
}

View File

@ -2295,9 +2295,8 @@ DEF_TRAVERSE_STMT(AsTypeExpr, {})
template <typename Derived>
bool RecursiveASTVisitor<Derived>::TraverseOMPExecutableDirective(
OMPExecutableDirective *S) {
for (auto *C : S->clauses()) {
for (auto *C : S->clauses())
TRY_TO(TraverseOMPClause(C));
}
return true;
}