forked from OSchip/llvm-project
parent
86c065dd68
commit
f0b93441a4
|
@ -32,6 +32,10 @@ namespace llvm {
|
||||||
/// a chunk at a time.
|
/// a chunk at a time.
|
||||||
class raw_ostream {
|
class raw_ostream {
|
||||||
private:
|
private:
|
||||||
|
// Do not implement. raw_ostream is noncopyable.
|
||||||
|
void operator=(const raw_ostream &);
|
||||||
|
raw_ostream(const raw_ostream &);
|
||||||
|
|
||||||
/// The buffer is handled in such a way that the buffer is
|
/// The buffer is handled in such a way that the buffer is
|
||||||
/// uninitialized, unbuffered, or out of space when OutBufCur >=
|
/// uninitialized, unbuffered, or out of space when OutBufCur >=
|
||||||
/// OutBufEnd. Thus a single comparison suffices to determine if we
|
/// OutBufEnd. Thus a single comparison suffices to determine if we
|
||||||
|
|
Loading…
Reference in New Issue