summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/hle_ipc.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-19 05:55:55 +0200
committerGitHub <noreply@github.com>2018-07-19 05:55:55 +0200
commit85421f34062bd0303f97cc9d01fa838709231326 (patch)
treec953a283bcf0f83c83b282bfea2da8080f16d556 /src/core/hle/kernel/hle_ipc.h
parentMerge pull request #691 from lioncash/guard (diff)
parentcore/memory, core/hle/kernel: Use std::move where applicable (diff)
downloadyuzu-85421f34062bd0303f97cc9d01fa838709231326.tar
yuzu-85421f34062bd0303f97cc9d01fa838709231326.tar.gz
yuzu-85421f34062bd0303f97cc9d01fa838709231326.tar.bz2
yuzu-85421f34062bd0303f97cc9d01fa838709231326.tar.lz
yuzu-85421f34062bd0303f97cc9d01fa838709231326.tar.xz
yuzu-85421f34062bd0303f97cc9d01fa838709231326.tar.zst
yuzu-85421f34062bd0303f97cc9d01fa838709231326.zip
Diffstat (limited to 'src/core/hle/kernel/hle_ipc.h')
-rw-r--r--src/core/hle/kernel/hle_ipc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/hle_ipc.h b/src/core/hle/kernel/hle_ipc.h
index c6eca7404..88f93ad22 100644
--- a/src/core/hle/kernel/hle_ipc.h
+++ b/src/core/hle/kernel/hle_ipc.h
@@ -59,12 +59,12 @@ public:
* associated ServerSession.
* @param server_session ServerSession associated with the connection.
*/
- void ClientDisconnected(SharedPtr<ServerSession> server_session);
+ void ClientDisconnected(const SharedPtr<ServerSession>& server_session);
protected:
/// List of sessions that are connected to this handler.
/// A ServerSession whose server endpoint is an HLE implementation is kept alive by this list
- // for the duration of the connection.
+ /// for the duration of the connection.
std::vector<SharedPtr<ServerSession>> connected_sessions;
};