[gardening] Use consistent spacing after if, for and while

This commit is contained in:
practicalswift
2017-04-13 16:37:32 +02:00
parent 65bcc8ff84
commit 40cf4d183d
13 changed files with 20 additions and 20 deletions

View File

@@ -541,8 +541,8 @@ public:
if (auto *VD = dyn_cast_or_null<ValueDecl>(D)) {
if (isContainedInSelection(CharSourceRange(SM, VD->getStartLoc(),
VD->getEndLoc())))
if(std::find(DeclaredDecls.begin(), DeclaredDecls.end(),
DeclaredDecl(VD)) == DeclaredDecls.end())
if (std::find(DeclaredDecls.begin(), DeclaredDecls.end(),
DeclaredDecl(VD)) == DeclaredDecls.end())
DeclaredDecls.push_back(VD);
}
}