diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-28 22:35:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-28 22:35:24 +0000 |
commit | a725c45e9edeb6799f47b667d8ef9ca2b4fff35e (patch) | |
tree | 7ebc965ab767964c8120678bc46642a682d80bcf /include | |
parent | d8030a7179a0d301dd3fb4c42c65a8f01dfe398e (diff) |
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')
-rw-r--r-- | include/llvm/Assembly/Writer.h | 2 |
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(); |