mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-26 05:25:47 +00:00
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
This commit is contained in:
@@ -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();
|
||||
|
Reference in New Issue
Block a user