forked from OSchip/llvm-project
Use implicit calls to parent constructor. NFC.
llvm-svn: 234497
This commit is contained in:
parent
8f40f03024
commit
7a051fa27a
|
@ -84,12 +84,12 @@ public:
|
|||
/// so it doesn't want another layer of buffering to be happening
|
||||
/// underneath it.
|
||||
///
|
||||
formatted_raw_ostream(raw_ostream &Stream, bool Delete = false)
|
||||
: raw_ostream(), TheStream(nullptr), DeleteStream(false), Position(0, 0) {
|
||||
formatted_raw_ostream(raw_ostream &Stream, bool Delete = false)
|
||||
: TheStream(nullptr), DeleteStream(false), Position(0, 0) {
|
||||
setStream(Stream, Delete);
|
||||
}
|
||||
explicit formatted_raw_ostream()
|
||||
: raw_ostream(), TheStream(nullptr), DeleteStream(false), Position(0, 0) {
|
||||
: TheStream(nullptr), DeleteStream(false), Position(0, 0) {
|
||||
Scanned = nullptr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue