2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

key_manager: Make use of canonical deleted operator=

operator= typically returns a reference, it's not void.

While we're at it, we can correct the parameter formatting to adhere to the
codebase.
This commit is contained in:
Lioncash 2020-07-01 00:21:29 -04:00
parent 3bb63bc0b3
commit 00a1d106bd

View file

@ -228,8 +228,8 @@ public:
return instance;
}
KeyManager(KeyManager const&) = delete;
void operator=(KeyManager const&) = delete;
KeyManager(const KeyManager&) = delete;
KeyManager& operator=(const KeyManager&) = delete;
bool HasKey(S128KeyType id, u64 field1 = 0, u64 field2 = 0) const;
bool HasKey(S256KeyType id, u64 field1 = 0, u64 field2 = 0) const;