summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBen Langmuir <blangmuir@apple.com>2014-02-27 02:09:10 +0000
committerBen Langmuir <blangmuir@apple.com>2014-02-27 02:09:10 +0000
commit8a6c29ef5b5d5586858c82399f0c7d0a60229b8e (patch)
tree0dbfd58db5431388ec0238761b2e823651ef9630 /include
parent644aecfc973e6b899230a3c7eb7541c948e69522 (diff)
downloadllvm-8a6c29ef5b5d5586858c82399f0c7d0a60229b8e.tar.gz
llvm-8a6c29ef5b5d5586858c82399f0c7d0a60229b8e.tar.bz2
llvm-8a6c29ef5b5d5586858c82399f0c7d0a60229b8e.tar.xz
Revert "Use StringRef in raw_fd_ostream constructor"
This reverts commit r202225, which may cause a performance regression. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202338 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/raw_ostream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h
index e942d0af91..e0048f5140 100644
--- a/include/llvm/Support/raw_ostream.h
+++ b/include/llvm/Support/raw_ostream.h
@@ -346,7 +346,7 @@ public:
/// itself to own the file descriptor. In particular, it will close the
/// file descriptor when it is done (this is necessary to detect
/// output errors).
- raw_fd_ostream(StringRef Filename, std::string &ErrorInfo,
+ raw_fd_ostream(const char *Filename, std::string &ErrorInfo,
sys::fs::OpenFlags Flags);
/// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If