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