summaryrefslogtreecommitdiffstats
path: root/src/common/common_funcs.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-05-01 21:22:14 +0200
committerbunnei <bunneidev@gmail.com>2021-05-06 01:40:53 +0200
commitd3c166d4d5fddb0c19c0219a3efdc85907ebce31 (patch)
treed0df1f632cbf8dc884ef95393bcd6b6c6efa4926 /src/common/common_funcs.h
parentfixup! hle: kernel: Rename Process to KProcess. (diff)
downloadyuzu-d3c166d4d5fddb0c19c0219a3efdc85907ebce31.tar
yuzu-d3c166d4d5fddb0c19c0219a3efdc85907ebce31.tar.gz
yuzu-d3c166d4d5fddb0c19c0219a3efdc85907ebce31.tar.bz2
yuzu-d3c166d4d5fddb0c19c0219a3efdc85907ebce31.tar.lz
yuzu-d3c166d4d5fddb0c19c0219a3efdc85907ebce31.tar.xz
yuzu-d3c166d4d5fddb0c19c0219a3efdc85907ebce31.tar.zst
yuzu-d3c166d4d5fddb0c19c0219a3efdc85907ebce31.zip
Diffstat (limited to '')
-rw-r--r--src/common/common_funcs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h
index 19bb021e0..17d1ee86b 100644
--- a/src/common/common_funcs.h
+++ b/src/common/common_funcs.h
@@ -108,11 +108,11 @@ __declspec(dllimport) void __stdcall DebugBreak(void);
} \
}
-#define NON_COPYABLE(cls) \
+#define YUZU_NON_COPYABLE(cls) \
cls(const cls&) = delete; \
cls& operator=(const cls&) = delete
-#define NON_MOVEABLE(cls) \
+#define YUZU_NON_MOVEABLE(cls) \
cls(cls&&) = delete; \
cls& operator=(cls&&) = delete