diff options
Diffstat (limited to 'include/llvm/Support/raw_ostream.h')
| -rw-r--r-- | include/llvm/Support/raw_ostream.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 1668cc5..ed06dbf 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -452,6 +452,10 @@ class raw_svector_ostream : public raw_ostream { /// counting the bytes currently in the buffer. virtual uint64_t current_pos(); public: + /// Construct a new raw_svector_ostream. + /// + /// \arg O - The vector to write to; this *must* have at least 128 bytes of + /// free space in it. explicit raw_svector_ostream(SmallVectorImpl<char> &O); ~raw_svector_ostream(); }; |
