summaryrefslogtreecommitdiffstats
path: root/src/core/crypto
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-07-01 06:28:49 +0200
committerLioncash <mathew1800@gmail.com>2020-07-01 06:28:50 +0200
commitfb13f053bb6ef304bc7656b521727c87eff697f1 (patch)
treea73d08ac25a77b294ec1cd1b9e15d84a26761daa /src/core/crypto
parentkey_manager: Delete move operations (diff)
downloadyuzu-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.h2
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;
}