diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-06 09:05:02 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-07 04:45:05 +0200 |
commit | 6ad71c216b2d1112c96d621140c60b4e1b359811 (patch) | |
tree | dd0a12d5f3939ec4102ca92884659737814821ef /src/common/common.h | |
parent | Common: Use C++11 deleted functions for NonCopyable (diff) | |
download | yuzu-6ad71c216b2d1112c96d621140c60b4e1b359811.tar yuzu-6ad71c216b2d1112c96d621140c60b4e1b359811.tar.gz yuzu-6ad71c216b2d1112c96d621140c60b4e1b359811.tar.bz2 yuzu-6ad71c216b2d1112c96d621140c60b4e1b359811.tar.lz yuzu-6ad71c216b2d1112c96d621140c60b4e1b359811.tar.xz yuzu-6ad71c216b2d1112c96d621140c60b4e1b359811.tar.zst yuzu-6ad71c216b2d1112c96d621140c60b4e1b359811.zip |
Diffstat (limited to 'src/common/common.h')
-rw-r--r-- | src/common/common.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/common/common.h b/src/common/common.h index d64635620..a4a403fb9 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" |