Common: Use C++11 deleted functions for NonCopyable

This commit is contained in:
Yuri Kunde Schlesner 2015-05-06 01:56:18 -03:00
parent 1fee769aa0
commit 7a4b717772

View File

@ -14,15 +14,13 @@
#define STACKALIGN #define STACKALIGN
// An inheritable class to disallow the copy constructor and operator= functions // An inheritable class to disallow the copy constructor and operator= functions
class NonCopyable class NonCopyable {
{
protected: protected:
NonCopyable() {} NonCopyable() = default;
NonCopyable(const NonCopyable&&) {} ~NonCopyable() = default;
void operator=(const NonCopyable&&) {}
private: NonCopyable(NonCopyable&) = delete;
NonCopyable(NonCopyable&); NonCopyable& operator=(NonCopyable&) = delete;
NonCopyable& operator=(NonCopyable& other);
}; };
#include "common/assert.h" #include "common/assert.h"