summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/server_session.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2016-06-17 22:24:38 +0200
committerSubv <subv2112@gmail.com>2016-12-01 05:02:06 +0100
commit0a33d915f88b89e2fae20edc1e33a8ef60a2519c (patch)
treeb0eb3db13d9a21160ceb2fbb8d9e23ab1229659a /src/core/hle/kernel/server_session.h
parent Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication. (diff)
downloadyuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar.gz
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar.bz2
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar.lz
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar.xz
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar.zst
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.zip
Diffstat (limited to 'src/core/hle/kernel/server_session.h')
-rw-r--r--src/core/hle/kernel/server_session.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/server_session.h b/src/core/hle/kernel/server_session.h
index eab9fe211..510b0a150 100644
--- a/src/core/hle/kernel/server_session.h
+++ b/src/core/hle/kernel/server_session.h
@@ -200,7 +200,7 @@ public:
* @param name Optional name of the ports
* @return The created session tuple
*/
- static std::tuple<SharedPtr<ServerSession>, SharedPtr<ClientSession>> CreateSessionPair(SharedPtr<ClientPort> client_port, std::string name = "Unknown");
+ static std::tuple<SharedPtr<ServerSession>, SharedPtr<ClientSession>> CreateSessionPair(SharedPtr<ClientPort> client_port, const std::string& name = "Unknown");
/**
* Creates a portless ClientSession and associates it with this ServerSession.