mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-27 14:24:40 +00:00
Use implicit calls to parent constructor. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234497 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -84,12 +84,12 @@ public:
|
|||||||
/// so it doesn't want another layer of buffering to be happening
|
/// so it doesn't want another layer of buffering to be happening
|
||||||
/// underneath it.
|
/// underneath it.
|
||||||
///
|
///
|
||||||
formatted_raw_ostream(raw_ostream &Stream, bool Delete = false)
|
formatted_raw_ostream(raw_ostream &Stream, bool Delete = false)
|
||||||
: raw_ostream(), TheStream(nullptr), DeleteStream(false), Position(0, 0) {
|
: TheStream(nullptr), DeleteStream(false), Position(0, 0) {
|
||||||
setStream(Stream, Delete);
|
setStream(Stream, Delete);
|
||||||
}
|
}
|
||||||
explicit formatted_raw_ostream()
|
explicit formatted_raw_ostream()
|
||||||
: raw_ostream(), TheStream(nullptr), DeleteStream(false), Position(0, 0) {
|
: TheStream(nullptr), DeleteStream(false), Position(0, 0) {
|
||||||
Scanned = nullptr;
|
Scanned = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user