mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
Make raw_ostream non-copyable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78920 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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
|
||||||
|
Reference in New Issue
Block a user