[llvm] r234497 - Use implicit calls to parent constructor. NFC.

Rafael Espindola rafael.espindola at gmail.com
Thu Apr 9 09:00:25 PDT 2015


Author: rafael
Date: Thu Apr  9 11:00:24 2015
New Revision: 234497

URL: http://llvm.org/viewvc/llvm-project?rev=234497&view=rev
Log:
Use implicit calls to parent constructor. NFC.

Modified:
    llvm/trunk/include/llvm/Support/FormattedStream.h

Modified: llvm/trunk/include/llvm/Support/FormattedStream.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/FormattedStream.h?rev=234497&r1=234496&r2=234497&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/FormattedStream.h (original)
+++ llvm/trunk/include/llvm/Support/FormattedStream.h Thu Apr  9 11:00:24 2015
@@ -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;
   }
 





More information about the llvm-commits mailing list