There are now no uses of NonCopyableV

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6580 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-06-03 15:30:48 +00:00
parent bf0ac3fe69
commit 0c0583a765

View File

@ -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