diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-28 03:25:16 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-28 03:25:16 +0200 |
commit | 438dba40c1def91e9de252ef05f8650464e5c0c2 (patch) | |
tree | 8f323d6095dfefe9d00f34cc4d7229be58a9f409 /src/common/common.h | |
parent | Merge pull request #4 from cpp3ds/master (diff) | |
parent | removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable class (diff) | |
download | yuzu-438dba40c1def91e9de252ef05f8650464e5c0c2.tar yuzu-438dba40c1def91e9de252ef05f8650464e5c0c2.tar.gz yuzu-438dba40c1def91e9de252ef05f8650464e5c0c2.tar.bz2 yuzu-438dba40c1def91e9de252ef05f8650464e5c0c2.tar.lz yuzu-438dba40c1def91e9de252ef05f8650464e5c0c2.tar.xz yuzu-438dba40c1def91e9de252ef05f8650464e5c0c2.tar.zst yuzu-438dba40c1def91e9de252ef05f8650464e5c0c2.zip |
Diffstat (limited to 'src/common/common.h')
-rw-r--r-- | src/common/common.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/common.h b/src/common/common.h index a281b21cc..418757855 100644 --- a/src/common/common.h +++ b/src/common/common.h @@ -159,9 +159,4 @@ enum EMUSTATE_CHANGE EMUSTATE_CHANGE_STOP }; -// This should be used in the private: declarations for a class -#define DISALLOW_COPY_AND_ASSIGN(TypeName) \ - TypeName(const TypeName&); \ - void operator=(const TypeName&) - #endif // _COMMON_H_ |