[gardening] if ([space]…[space]) → if (…), for(…) → for (…), while(…) → while (…), [[space]x, y[space]] → [x, y]

This commit is contained in:
practicalswift
2016-04-04 16:22:11 +02:00
parent 336b7198f7
commit abfecfde17
85 changed files with 214 additions and 214 deletions

View File

@@ -1417,7 +1417,7 @@ void SourceFile::print(ASTPrinter &Printer, const PrintOptions &PO) {
// For a major decl, we print an empty line before it.
if (MajorDeclKinds.find(decl->getKind()) != MajorDeclKinds.end())
Printer << "\n";
if(decl->print(Printer, PO))
if (decl->print(Printer, PO))
Printer << "\n";
}
}