diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-04-09 01:11:26 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-04-09 01:11:26 +0000 |
commit | 622be5793df74f36c713769f429fce4e2d817e3e (patch) | |
tree | 220a76d2709520eff53d77765a34cd1a8d1eb989 | |
parent | bc91e908f47fdc63304c265e90997d3a511bed08 (diff) | |
download | bcm5719-llvm-622be5793df74f36c713769f429fce4e2d817e3e.tar.gz bcm5719-llvm-622be5793df74f36c713769f429fce4e2d817e3e.zip |
Delete unused constructor.
llvm-svn: 234459
-rw-r--r-- | llvm/include/llvm/Support/circular_raw_ostream.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/include/llvm/Support/circular_raw_ostream.h b/llvm/include/llvm/Support/circular_raw_ostream.h index ee7b89fe8c8..3d0f6e83cd3 100644 --- a/llvm/include/llvm/Support/circular_raw_ostream.h +++ b/llvm/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(); |