From: Chris Lattner Date: Sat, 28 Feb 2009 22:35:24 +0000 (+0000) Subject: disable copying and assignment. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a725c45e9edeb6799f47b667d8ef9ca2b4fff35e;p=oota-llvm.git disable copying and assignment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65730 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h index 343539acef2..49ff50f2593 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();