1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

clang-format this constructor.

llvm-svn: 234501
This commit is contained in:
Rafael Espindola 2015-04-09 16:37:11 +00:00
parent 3818b474b0
commit 81f709962b

View File

@ -107,14 +107,10 @@ namespace llvm
/// management of it, etc. /// management of it, etc.
/// ///
circular_raw_ostream(raw_ostream &Stream, const char *Header, circular_raw_ostream(raw_ostream &Stream, const char *Header,
size_t BuffSize = 0, bool Owns = REFERENCE_ONLY) size_t BuffSize = 0, bool Owns = REFERENCE_ONLY)
: raw_ostream(/*unbuffered*/true), : raw_ostream(/*unbuffered*/ true), TheStream(nullptr),
TheStream(nullptr), OwnsStream(Owns), BufferSize(BuffSize), BufferArray(nullptr),
OwnsStream(Owns), Filled(false), Banner(Header) {
BufferSize(BuffSize),
BufferArray(nullptr),
Filled(false),
Banner(Header) {
if (BufferSize != 0) if (BufferSize != 0)
BufferArray = new char[BufferSize]; BufferArray = new char[BufferSize];
Cur = BufferArray; Cur = BufferArray;