projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf0ac3f
)
There are now no uses of NonCopyableV
author
Chris Lattner
<sabre@nondot.org>
Tue, 3 Jun 2003 15:30:48 +0000
(15:30 +0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/include/Support/NonCopyable.h
b/include/Support/NonCopyable.h
index f4fc26805a4f07423d51930a305769ee7aedd518..82f3c1a760d29fabd58d6e8cc9718aab4d0a4c8c 100644
(file)
--- 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