From: Chris Lattner Date: Tue, 3 Jun 2003 15:30:48 +0000 (+0000) Subject: There are now no uses of NonCopyableV X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0c0583a765d217c0340a6f1219d0bad397cc699d;p=oota-llvm.git There are now no uses of NonCopyableV git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6580 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/Support/NonCopyable.h b/include/Support/NonCopyable.h index f4fc26805a4..82f3c1a760d 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