diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-13 15:58:55 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-13 15:58:55 +0000 |
commit | 48916523f53a54ce5468b133547dc25625515527 (patch) | |
tree | c7f2f92d3ad58b7d8291442adf72faa0d0c7e1e7 /include/llvm/Support | |
parent | a346e714f2836fdbb07582c5c7d4e8bb3ffafaf2 (diff) | |
download | external_llvm-48916523f53a54ce5468b133547dc25625515527.zip external_llvm-48916523f53a54ce5468b133547dc25625515527.tar.gz external_llvm-48916523f53a54ce5468b133547dc25625515527.tar.bz2 |
Move SetBufferSize and SetUnbuffered out of line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78909 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/raw_ostream.h | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 58de3e8..82520ce 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -94,17 +94,7 @@ public: /// SetBufferSize - Set the internal buffer size to the specified amount /// instead of the default. - void SetBufferSize(size_t Size=4096) { - assert(Size >= 64 && - "Buffer size must be somewhat large for invariants to hold"); - flush(); - - delete [] OutBufStart; - OutBufStart = new char[Size]; - OutBufEnd = OutBufStart+Size; - OutBufCur = OutBufStart; - Unbuffered = false; - } + void SetBufferSize(size_t Size=4096); size_t GetBufferSize() const { return OutBufEnd - OutBufStart; @@ -114,13 +104,7 @@ public: /// unbuffered the stream will flush after every write. This routine /// will also flush the buffer immediately when the stream is being /// set to unbuffered. - void SetUnbuffered() { - flush(); - - delete [] OutBufStart; - OutBufStart = OutBufEnd = OutBufCur = 0; - Unbuffered = true; - } + void SetUnbuffered(); size_t GetNumBytesInBuffer() const { return OutBufCur - OutBufStart; |