aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/common.h')
-rw-r--r--src/common/common.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/common/common.h b/src/common/common.h
index d6463562..a4a403fb 100644
--- a/src/common/common.h
+++ b/src/common/common.h
@@ -13,16 +13,6 @@
#define STACKALIGN
-// An inheritable class to disallow the copy constructor and operator= functions
-class NonCopyable {
-protected:
- NonCopyable() = default;
- ~NonCopyable() = default;
-
- NonCopyable(NonCopyable&) = delete;
- NonCopyable& operator=(NonCopyable&) = delete;
-};
-
#include "common/assert.h"
#include "common/logging/log.h"
#include "common/common_types.h"