[llvm-commits] CVS: llvm/include/Support/NonCopyable.h

Chris Lattner lattner at cs.uiuc.edu
Tue Jun 3 10:32:09 PDT 2003


Changes in directory llvm/include/Support:

NonCopyable.h updated: 1.1 -> 1.2

---
Log message:

There are now no uses of NonCopyableV


---
Diffs of the changes:

Index: llvm/include/Support/NonCopyable.h
diff -u llvm/include/Support/NonCopyable.h:1.1 llvm/include/Support/NonCopyable.h:1.2
--- llvm/include/Support/NonCopyable.h:1.1	Mon Nov 26 18:02:45 2001
+++ llvm/include/Support/NonCopyable.h	Tue Jun  3 10:30:48 2003
@@ -23,15 +23,4 @@
   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





More information about the llvm-commits mailing list