mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
disable copying and assignment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65730 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d8030a7179
commit
a725c45e9e
@ -30,6 +30,8 @@ template <typename T> class SmallVectorImpl;
|
||||
/// TypePrinting - Type printing machinery.
|
||||
class TypePrinting {
|
||||
void *TypeNames;
|
||||
TypePrinting(const TypePrinting &); // DO NOT IMPLEMENT
|
||||
void operator=(const TypePrinting&); // DO NOT IMPLEMENT
|
||||
public:
|
||||
TypePrinting(const Module *M);
|
||||
~TypePrinting();
|
||||
|
Loading…
Reference in New Issue
Block a user