diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-24 04:40:24 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-24 04:40:24 +0200 |
commit | 22fd3f0026e42b15d50aef1e6ddc12a8cddea452 (patch) | |
tree | 600fa9880a7028d1ac7a0d28e0da24173c66a4f3 /src/core/hle/kernel | |
parent | ipc_helpers: Make member variables of ResponseBuilder private (diff) | |
download | yuzu-22fd3f0026e42b15d50aef1e6ddc12a8cddea452.tar yuzu-22fd3f0026e42b15d50aef1e6ddc12a8cddea452.tar.gz yuzu-22fd3f0026e42b15d50aef1e6ddc12a8cddea452.tar.bz2 yuzu-22fd3f0026e42b15d50aef1e6ddc12a8cddea452.tar.lz yuzu-22fd3f0026e42b15d50aef1e6ddc12a8cddea452.tar.xz yuzu-22fd3f0026e42b15d50aef1e6ddc12a8cddea452.tar.zst yuzu-22fd3f0026e42b15d50aef1e6ddc12a8cddea452.zip |
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r-- | src/core/hle/kernel/hle_ipc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/hle_ipc.h b/src/core/hle/kernel/hle_ipc.h index 01b805df8..84727f748 100644 --- a/src/core/hle/kernel/hle_ipc.h +++ b/src/core/hle/kernel/hle_ipc.h @@ -91,7 +91,7 @@ protected: */ class HLERequestContext { public: - HLERequestContext(SharedPtr<Kernel::ServerSession> session); + explicit HLERequestContext(SharedPtr<ServerSession> session); ~HLERequestContext(); /// Returns a pointer to the IPC command buffer for this request. |