diff options
author | Hubert Tong <hubert.reinterpretcast@gmail.com> | 2019-06-10 22:30:57 +0000 |
---|---|---|
committer | Hubert Tong <hubert.reinterpretcast@gmail.com> | 2019-06-10 22:30:57 +0000 |
commit | 9df9cbafceb6a509f987822dd4cc2feda3955a9a (patch) | |
tree | d8924ab55ed191e62277ce042666763101c85242 /clang/lib/ARCMigrate/PlistReporter.cpp | |
parent | a2c2d731db0df9b89f30da9bfed77f069856f97a (diff) | |
download | bcm5719-llvm-9df9cbafceb6a509f987822dd4cc2feda3955a9a.tar.gz bcm5719-llvm-9df9cbafceb6a509f987822dd4cc2feda3955a9a.zip |
[PlistSupport] Produce a newline to end plist output files
Summary:
As suggested in the review of D62949, this patch updates the plist
output to have a newline at the end of the file. This makes it so that
the plist output file qualifies as a POSIX text file, which increases
the consumability of the generated plist file in relation to various
tools.
Reviewers: NoQ, sfertile, xingxue, jasonliu, daltenty
Reviewed By: NoQ, xingxue
Subscribers: jsji, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D63041
llvm-svn: 362992
Diffstat (limited to 'clang/lib/ARCMigrate/PlistReporter.cpp')
-rw-r--r-- | clang/lib/ARCMigrate/PlistReporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/ARCMigrate/PlistReporter.cpp b/clang/lib/ARCMigrate/PlistReporter.cpp index 636caddf1be..6d7fcb053b4 100644 --- a/clang/lib/ARCMigrate/PlistReporter.cpp +++ b/clang/lib/ARCMigrate/PlistReporter.cpp @@ -120,5 +120,5 @@ void arcmt::writeARCDiagsToPlist(const std::string &outPath, o << " </array>\n"; // Finish. - o << "</dict>\n</plist>"; + o << "</dict>\n</plist>\n"; } |