diff options
author | Alp Toker <alp@nuanti.com> | 2014-07-06 07:59:14 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-07-06 07:59:14 +0000 |
commit | 452bfcf00cb5fd3fad31c9aefdc6f3b775ff2748 (patch) | |
tree | cc8eac270d64128695fc2f73d826139e015a8a4b /clang/lib/ARCMigrate/PlistReporter.cpp | |
parent | 1a86ad21d1154e63fa4a9811278a5086cc6282a4 (diff) | |
download | bcm5719-llvm-452bfcf00cb5fd3fad31c9aefdc6f3b775ff2748.tar.gz bcm5719-llvm-452bfcf00cb5fd3fad31c9aefdc6f3b775ff2748.zip |
PlistSupport.h: avoid gcc 'defined but not used' warning
llvm-svn: 212396
Diffstat (limited to 'clang/lib/ARCMigrate/PlistReporter.cpp')
-rw-r--r-- | clang/lib/ARCMigrate/PlistReporter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/ARCMigrate/PlistReporter.cpp b/clang/lib/ARCMigrate/PlistReporter.cpp index 09cb50512c2..6b34ef0c2b9 100644 --- a/clang/lib/ARCMigrate/PlistReporter.cpp +++ b/clang/lib/ARCMigrate/PlistReporter.cpp @@ -63,8 +63,7 @@ void arcmt::writeARCDiagsToPlist(const std::string &outPath, return; } - // Write the plist header. - o << PlistHeader; + EmitPlistHeader(o); // Write the root object: a <dict> containing... // - "files", an <array> mapping from FIDs to file names |