summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2021-05-01 12:43:15 -0700
committerGravatar bunnei2021-05-05 16:40:53 -0700
commit1b074b898450af28ba1f96e0cb3bf4a9c5687b5d (patch)
tree89fa55ba5c18e20609dc6713c660bb7cf9524da5
parentfixup! hle: kernel: Migrate KPort, KClientPort, and KServerPort to KAutoObject. (diff)
downloadyuzu-1b074b898450af28ba1f96e0cb3bf4a9c5687b5d.tar.gz
yuzu-1b074b898450af28ba1f96e0cb3bf4a9c5687b5d.tar.xz
yuzu-1b074b898450af28ba1f96e0cb3bf4a9c5687b5d.zip
fixup! hle: kernel: Migrate KSession, KClientSession, and KServerSession to KAutoObject.
-rw-r--r--src/core/hle/kernel/k_client_session.h2
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:
45 virtual void Destroy() override; 45 virtual void Destroy() override;
46 static void PostDestroy([[maybe_unused]] uintptr_t arg) {} 46 static void PostDestroy([[maybe_unused]] uintptr_t arg) {}
47 47
48 constexpr KSession* GetParent() const { 48 KSession* GetParent() const {
49 return parent; 49 return parent;
50 } 50 }
51 51