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

Use implicit calls to parent constructor. NFC.

llvm-svn: 234497
This commit is contained in:
Rafael Espindola 2015-04-09 16:00:24 +00:00
parent edd11eb538
commit 95aca09bad

View File

@ -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;
}