diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-04-14 15:25:14 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-04-14 15:25:14 +0000 |
| commit | 701d79e8fa40dcbd7ac47ea0b6b560706f7d938a (patch) | |
| tree | c965b798bd06c4aa953affc8535904cb4925f2ef /llvm | |
| parent | 8229ebb9263fb1a773ea48c632bc1e04ce6e1299 (diff) | |
| download | bcm5719-llvm-701d79e8fa40dcbd7ac47ea0b6b560706f7d938a.tar.gz bcm5719-llvm-701d79e8fa40dcbd7ac47ea0b6b560706f7d938a.zip | |
Fix MSVC build.
llvm-svn: 234899
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Support/raw_ostream.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/raw_ostream.h b/llvm/include/llvm/Support/raw_ostream.h index ed79292bd5e..338f0f4295c 100644 --- a/llvm/include/llvm/Support/raw_ostream.h +++ b/llvm/include/llvm/Support/raw_ostream.h @@ -318,7 +318,8 @@ private: /// but needs to patch in a header that needs to know the output size. class raw_pwrite_stream : public raw_ostream { public: - using raw_ostream::raw_ostream; + explicit raw_pwrite_stream(bool Unbuffered = false) + : raw_ostream(Unbuffered) {} virtual void pwrite(const char *Ptr, size_t Size, uint64_t Offset) = 0; }; |

