diff options
author | Lioncash <mathew1800@gmail.com> | 2020-07-01 06:28:49 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-07-01 06:28:50 +0200 |
commit | fb13f053bb6ef304bc7656b521727c87eff697f1 (patch) | |
tree | a73d08ac25a77b294ec1cd1b9e15d84a26761daa /src/core/crypto | |
parent | key_manager: Delete move operations (diff) | |
download | yuzu-fb13f053bb6ef304bc7656b521727c87eff697f1.tar yuzu-fb13f053bb6ef304bc7656b521727c87eff697f1.tar.gz yuzu-fb13f053bb6ef304bc7656b521727c87eff697f1.tar.bz2 yuzu-fb13f053bb6ef304bc7656b521727c87eff697f1.tar.lz yuzu-fb13f053bb6ef304bc7656b521727c87eff697f1.tar.xz yuzu-fb13f053bb6ef304bc7656b521727c87eff697f1.tar.zst yuzu-fb13f053bb6ef304bc7656b521727c87eff697f1.zip |
Diffstat (limited to 'src/core/crypto')
-rw-r--r-- | src/core/crypto/key_manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/crypto/key_manager.h b/src/core/crypto/key_manager.h index 44e7c5bb5..9269a73f2 100644 --- a/src/core/crypto/key_manager.h +++ b/src/core/crypto/key_manager.h @@ -223,7 +223,7 @@ bool operator<(const KeyIndex<KeyType>& lhs, const KeyIndex<KeyType>& rhs) { class KeyManager { public: - static KeyManager& instance() { + static KeyManager& Instance() { static KeyManager instance; return instance; } |