diff options
| author | 2021-05-01 12:22:14 -0700 | |
|---|---|---|
| committer | 2021-05-05 16:40:53 -0700 | |
| commit | d3c166d4d5fddb0c19c0219a3efdc85907ebce31 (patch) | |
| tree | d0df1f632cbf8dc884ef95393bcd6b6c6efa4926 /src/common/common_funcs.h | |
| parent | fixup! hle: kernel: Rename Process to KProcess. (diff) | |
| download | yuzu-d3c166d4d5fddb0c19c0219a3efdc85907ebce31.tar.gz yuzu-d3c166d4d5fddb0c19c0219a3efdc85907ebce31.tar.xz yuzu-d3c166d4d5fddb0c19c0219a3efdc85907ebce31.zip | |
common: Rename NON_COPYABLE/NON_MOVABLE with YUZU_ prefix.
Diffstat (limited to 'src/common/common_funcs.h')
| -rw-r--r-- | src/common/common_funcs.h | 4 |
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); | |||
| 108 | } \ | 108 | } \ |
| 109 | } | 109 | } |
| 110 | 110 | ||
| 111 | #define NON_COPYABLE(cls) \ | 111 | #define YUZU_NON_COPYABLE(cls) \ |
| 112 | cls(const cls&) = delete; \ | 112 | cls(const cls&) = delete; \ |
| 113 | cls& operator=(const cls&) = delete | 113 | cls& operator=(const cls&) = delete |
| 114 | 114 | ||
| 115 | #define NON_MOVEABLE(cls) \ | 115 | #define YUZU_NON_MOVEABLE(cls) \ |
| 116 | cls(cls&&) = delete; \ | 116 | cls(cls&&) = delete; \ |
| 117 | cls& operator=(cls&&) = delete | 117 | cls& operator=(cls&&) = delete |
| 118 | 118 | ||