There are now no uses of NonCopyableV

llvm-svn: 6580
This commit is contained in:
Chris Lattner 2003-06-03 15:30:48 +00:00
parent 46a1892c68
commit be9cef8af4
1 changed files with 0 additions and 11 deletions

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