summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/hle_ipc.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-19 01:02:47 +0200
committerLioncash <mathew1800@gmail.com>2018-07-19 01:34:31 +0200
commit46458e72846f2611f738e41ece6336472f5288d5 (patch)
treedf865f3749a15b3c7079d12d8e66df0fbb7ed05a /src/core/hle/kernel/hle_ipc.h
parentMerge pull request #681 from lioncash/const (diff)
downloadyuzu-46458e72846f2611f738e41ece6336472f5288d5.tar
yuzu-46458e72846f2611f738e41ece6336472f5288d5.tar.gz
yuzu-46458e72846f2611f738e41ece6336472f5288d5.tar.bz2
yuzu-46458e72846f2611f738e41ece6336472f5288d5.tar.lz
yuzu-46458e72846f2611f738e41ece6336472f5288d5.tar.xz
yuzu-46458e72846f2611f738e41ece6336472f5288d5.tar.zst
yuzu-46458e72846f2611f738e41ece6336472f5288d5.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;
};