1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

disable copying and assignment.

llvm-svn: 65730
This commit is contained in:
Chris Lattner 2009-02-28 22:35:24 +00:00
parent 03e16b833f
commit 28f2b3c2a4

View File

@ -30,6 +30,8 @@ template <typename T> class SmallVectorImpl;
/// TypePrinting - Type printing machinery. /// TypePrinting - Type printing machinery.
class TypePrinting { class TypePrinting {
void *TypeNames; void *TypeNames;
TypePrinting(const TypePrinting &); // DO NOT IMPLEMENT
void operator=(const TypePrinting&); // DO NOT IMPLEMENT
public: public:
TypePrinting(const Module *M); TypePrinting(const Module *M);
~TypePrinting(); ~TypePrinting();