Add the missing line return to align parameters of printPretty.

llvm-svn: 173597
This commit is contained in:
Michael Han 2013-01-27 00:06:24 +00:00
parent ba7b8e2c8c
commit 38d96ab6f5
1 changed files with 1 additions and 1 deletions

View File

@ -881,7 +881,7 @@ void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS) {
OS << " }\n\n";
OS << " virtual " << R.getName() << "Attr *clone (ASTContext &C) const;\n";
OS << " virtual void printPretty(raw_ostream &OS,"
OS << " virtual void printPretty(raw_ostream &OS,\n"
<< " const PrintingPolicy &Policy) const;\n";
for (ai = Args.begin(); ai != ae; ++ai) {