There are now no uses of NonCopyableV
authorChris Lattner <sabre@nondot.org>
Tue, 3 Jun 2003 15:30:48 +0000 (15:30 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 3 Jun 2003 15:30:48 +0000 (15:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6580 91177308-0d34-0410-b5e6-96231b3b80d8

include/Support/NonCopyable.h

index f4fc26805a4f07423d51930a305769ee7aedd518..82f3c1a760d29fabd58d6e8cc9718aab4d0a4c8c 100644 (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