common: Rename NON_COPYABLE/NON_MOVABLE with YUZU_ prefix.

This commit is contained in:
bunnei
2021-05-01 12:22:14 -07:00
parent 0536004d91
commit d3c166d4d5
5 changed files with 11 additions and 11 deletions

View File

@@ -23,8 +23,8 @@ namespace Kernel {
class KernelCore;
class KHandleTable {
NON_COPYABLE(KHandleTable);
NON_MOVEABLE(KHandleTable);
YUZU_NON_COPYABLE(KHandleTable);
YUZU_NON_MOVEABLE(KHandleTable);
public:
static constexpr size_t MaxTableSize = 1024;