mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[gardening] Use consistent spacing after if, for and while
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user