From: Rafael Espindola Date: Thu, 9 Apr 2015 01:11:26 +0000 (+0000) Subject: Delete unused constructor. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=faae56817908008eebd6d9b59a9a5d8b0fd743f3;p=oota-llvm.git Delete unused constructor. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234459 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/circular_raw_ostream.h b/include/llvm/Support/circular_raw_ostream.h index ee7b89fe8c8..3d0f6e83cd3 100644 --- a/include/llvm/Support/circular_raw_ostream.h +++ b/include/llvm/Support/circular_raw_ostream.h @@ -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();