aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/Support/NonCopyable.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/Support/NonCopyable.h b/include/Support/NonCopyable.h
index f4fc268..82f3c1a 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