summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-03 15:30:48 +0000
committerChris Lattner <sabre@nondot.org>2003-06-03 15:30:48 +0000
commit0c0583a765d217c0340a6f1219d0bad397cc699d (patch)
treeba51b3877f20c5c3b3c4a25664aa9cc482423c6a /include
parentbf0ac3fe69aa9e1bfcffec36ea53dadbb97c6b4d (diff)
downloadllvm-0c0583a765d217c0340a6f1219d0bad397cc699d.tar.gz
llvm-0c0583a765d217c0340a6f1219d0bad397cc699d.tar.bz2
llvm-0c0583a765d217c0340a6f1219d0bad397cc699d.tar.xz
There are now no uses of NonCopyableV
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6580 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/Support/NonCopyable.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/Support/NonCopyable.h b/include/Support/NonCopyable.h
index f4fc26805a..82f3c1a760 100644
--- a/include/Support/NonCopyable.h
+++ b/include/Support/NonCopyable.h
@@ -23,15 +23,4 @@ protected:
inline ~NonCopyable() {}
};
-class NonCopyableV {
- // Disable the copy constructor and the assignment operator
- // by making them both private:
- //
- NonCopyableV(const NonCopyableV &); // DO NOT IMPLEMENT
- NonCopyableV &operator=(const NonCopyableV &); // DO NOT IMPLEMENT
-protected:
- inline NonCopyableV() {}
- virtual ~NonCopyableV() {}
-};
-
#endif