diff options
author | Dan Gohman <gohman@apple.com> | 2010-08-20 16:39:41 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-08-20 16:39:41 +0000 |
commit | a1f89deb56eddf6a7738660063cbe7db9775b01c (patch) | |
tree | 3fe51ce11cbf7925c20598a00375c12d3662150e /include | |
parent | 00d1cdeca9d718d2eb51859800cf66a9d5e386ca (diff) | |
download | external_llvm-a1f89deb56eddf6a7738660063cbe7db9775b01c.zip external_llvm-a1f89deb56eddf6a7738660063cbe7db9775b01c.tar.gz external_llvm-a1f89deb56eddf6a7738660063cbe7db9775b01c.tar.bz2 |
Delete raw_stdout_ostream and raw_stderr_ostream, which are unused
outside of outs() and errs() themselves, and they don't really
need custom classes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111642 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/raw_ostream.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 72e38e6..1fea44f 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -392,24 +392,6 @@ public: } }; -/// raw_stdout_ostream - This is a stream that always prints to stdout. -/// -class raw_stdout_ostream : public raw_fd_ostream { - // An out of line virtual method to provide a home for the class vtable. - virtual void handle(); -public: - raw_stdout_ostream(); -}; - -/// raw_stderr_ostream - This is a stream that always prints to stderr. -/// -class raw_stderr_ostream : public raw_fd_ostream { - // An out of line virtual method to provide a home for the class vtable. - virtual void handle(); -public: - raw_stderr_ostream(); -}; - /// outs() - This returns a reference to a raw_ostream for standard output. /// Use it like: outs() << "foo" << "bar"; raw_ostream &outs(); |