diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-03 15:30:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-03 15:30:48 +0000 |
commit | 0c0583a765d217c0340a6f1219d0bad397cc699d (patch) | |
tree | ba51b3877f20c5c3b3c4a25664aa9cc482423c6a /include | |
parent | bf0ac3fe69aa9e1bfcffec36ea53dadbb97c6b4d (diff) | |
download | external_llvm-0c0583a765d217c0340a6f1219d0bad397cc699d.zip external_llvm-0c0583a765d217c0340a6f1219d0bad397cc699d.tar.gz external_llvm-0c0583a765d217c0340a6f1219d0bad397cc699d.tar.bz2 |
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.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/Support/NonCopyable.h b/include/Support/NonCopyable.h index f4fc268..82f3c1a 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 |