diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-25 15:36:09 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-25 15:36:09 +0000 |
commit | b044c473a155b7e827680635c1699cb2b5b6c0ee (patch) | |
tree | 6d16774a160f8d414c27febb7b51947052887afa /lib/Frontend/PlistDiagnostics.cpp | |
parent | 0b84a53412a6acac38e2d647d220ce7af851395e (diff) |
Update clang for raw_fd_ostream no longer requiring F_Force.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79991 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PlistDiagnostics.cpp')
-rw-r--r-- | lib/Frontend/PlistDiagnostics.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Frontend/PlistDiagnostics.cpp b/lib/Frontend/PlistDiagnostics.cpp index 0b92ece52d..26fc08019d 100644 --- a/lib/Frontend/PlistDiagnostics.cpp +++ b/lib/Frontend/PlistDiagnostics.cpp @@ -337,8 +337,7 @@ PlistDiagnostics::~PlistDiagnostics() { // Open the file. std::string ErrMsg; - llvm::raw_fd_ostream o(OutputFile.c_str(), ErrMsg, - llvm::raw_fd_ostream::F_Force); + llvm::raw_fd_ostream o(OutputFile.c_str(), ErrMsg); if (!ErrMsg.empty()) { llvm::errs() << "warning: could not creat file: " << OutputFile << '\n'; return; |