summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-02-28 22:35:24 +0000
committerChris Lattner <sabre@nondot.org>2009-02-28 22:35:24 +0000
commita725c45e9edeb6799f47b667d8ef9ca2b4fff35e (patch)
tree7ebc965ab767964c8120678bc46642a682d80bcf /include/llvm/Assembly
parentd8030a7179a0d301dd3fb4c42c65a8f01dfe398e (diff)
downloadllvm-a725c45e9edeb6799f47b667d8ef9ca2b4fff35e.tar.gz
llvm-a725c45e9edeb6799f47b667d8ef9ca2b4fff35e.tar.bz2
llvm-a725c45e9edeb6799f47b667d8ef9ca2b4fff35e.tar.xz
disable copying and assignment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65730 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r--include/llvm/Assembly/Writer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h
index 343539acef..49ff50f259 100644
--- a/include/llvm/Assembly/Writer.h
+++ b/include/llvm/Assembly/Writer.h
@@ -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();