diff options
author | bunnei <bunneidev@gmail.com> | 2021-05-01 12:43:15 -0700 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2021-05-05 16:40:53 -0700 |
commit | 1b074b898450af28ba1f96e0cb3bf4a9c5687b5d (patch) | |
tree | 89fa55ba5c18e20609dc6713c660bb7cf9524da5 | |
parent | 50d2dc3b514887510ffb012478c049ee2d1b9e75 (diff) |
fixup! hle: kernel: Migrate KSession, KClientSession, and KServerSession to KAutoObject.
-rw-r--r-- | src/core/hle/kernel/k_client_session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_client_session.h b/src/core/hle/kernel/k_client_session.h index 1480597e2..6476a588b 100644 --- a/src/core/hle/kernel/k_client_session.h +++ b/src/core/hle/kernel/k_client_session.h @@ -45,7 +45,7 @@ public: virtual void Destroy() override; static void PostDestroy([[maybe_unused]] uintptr_t arg) {} - constexpr KSession* GetParent() const { + KSession* GetParent() const { return parent; } |