Use implicit calls to parent constructor. NFC.
authorRafael Espindola <rafael.espindola@gmail.com>
Thu, 9 Apr 2015 16:00:24 +0000 (16:00 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Thu, 9 Apr 2015 16:00:24 +0000 (16:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234497 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/FormattedStream.h

index 8137daaff1f810d05ed5ba81374c451d63bc217a..96e4bfeb0b709b1db40455c73391b0f933bbd001 100644 (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;
   }