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