[llvm] r234459 - Delete unused constructor.

Rafael Espindola rafael.espindola at gmail.com
Wed Apr 8 18:11:27 PDT 2015


Author: rafael
Date: Wed Apr  8 20:11:26 2015
New Revision: 234459

URL: http://llvm.org/viewvc/llvm-project?rev=234459&view=rev
Log:
Delete unused constructor.

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

Modified: llvm/trunk/include/llvm/Support/circular_raw_ostream.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/circular_raw_ostream.h?rev=234459&r1=234458&r2=234459&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/circular_raw_ostream.h (original)
+++ llvm/trunk/include/llvm/Support/circular_raw_ostream.h Wed Apr  8 20:11:26 2015
@@ -120,15 +120,6 @@ namespace llvm
       Cur = BufferArray;
       setStream(Stream, Owns);
     }
-    explicit circular_raw_ostream()
-        : raw_ostream(/*unbuffered*/true),
-            TheStream(nullptr),
-            OwnsStream(REFERENCE_ONLY),
-            BufferArray(nullptr),
-            Filled(false),
-            Banner("") {
-      Cur = BufferArray;
-    }
 
     ~circular_raw_ostream() {
       flush();





More information about the llvm-commits mailing list