Put return type of synthesize method on same line as method declaration, space after method declaration header.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45806 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Driver/RewriteTest.cpp b/Driver/RewriteTest.cpp
index 0384c44..529f524 100644
--- a/Driver/RewriteTest.cpp
+++ b/Driver/RewriteTest.cpp
@@ -503,7 +503,7 @@
ResultStr += "id";
else
ResultStr += OMD->getResultType().getAsString();
- ResultStr += "\n";
+ ResultStr += " ";
// Unique method name
std::string NameStr;
@@ -567,7 +567,7 @@
ResultStr += " ";
ResultStr += PDecl->getName();
}
- ResultStr += ")";
+ ResultStr += ") ";
}
void RewriteTest::RewriteImplementationDecl(NamedDecl *OID) {