[llvm-commits] [llvm] r65730 - /llvm/trunk/include/llvm/Assembly/Writer.h
Chris Lattner
sabre at nondot.org
Sat Feb 28 14:35:24 PST 2009
Author: lattner
Date: Sat Feb 28 16:35:24 2009
New Revision: 65730
URL: http://llvm.org/viewvc/llvm-project?rev=65730&view=rev
Log:
disable copying and assignment.
Modified:
llvm/trunk/include/llvm/Assembly/Writer.h
Modified: llvm/trunk/include/llvm/Assembly/Writer.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Assembly/Writer.h?rev=65730&r1=65729&r2=65730&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Assembly/Writer.h (original)
+++ llvm/trunk/include/llvm/Assembly/Writer.h Sat Feb 28 16:35:24 2009
@@ -30,6 +30,8 @@
/// 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();
More information about the llvm-commits
mailing list