From a725c45e9edeb6799f47b667d8ef9ca2b4fff35e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 28 Feb 2009 22:35:24 +0000 Subject: disable copying and assignment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65730 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Assembly/Writer.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/llvm/Assembly') diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h index 343539a..49ff50f 100644 --- a/include/llvm/Assembly/Writer.h +++ b/include/llvm/Assembly/Writer.h @@ -30,6 +30,8 @@ template 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(); -- cgit v1.1