summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-24 06:23:27 +0200
committerGitHub <noreply@github.com>2018-07-24 06:23:27 +0200
commit2f029577c7a5bdab882cc711dd1939cf13ec152b (patch)
tree3533a83db1ac855b58340aea648e013242c01fad /src/core/hle/kernel
parentMerge pull request #785 from lioncash/fs (diff)
parenthle_ipc: Make constructors explicit where applicable (diff)
downloadyuzu-2f029577c7a5bdab882cc711dd1939cf13ec152b.tar
yuzu-2f029577c7a5bdab882cc711dd1939cf13ec152b.tar.gz
yuzu-2f029577c7a5bdab882cc711dd1939cf13ec152b.tar.bz2
yuzu-2f029577c7a5bdab882cc711dd1939cf13ec152b.tar.lz
yuzu-2f029577c7a5bdab882cc711dd1939cf13ec152b.tar.xz
yuzu-2f029577c7a5bdab882cc711dd1939cf13ec152b.tar.zst
yuzu-2f029577c7a5bdab882cc711dd1939cf13ec152b.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/hle_ipc.h2
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.