diff options
| author | Subv <subv2112@gmail.com> | 2016-06-17 15:24:38 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2016-11-30 23:02:06 -0500 |
| commit | 0a33d915f88b89e2fae20edc1e33a8ef60a2519c (patch) | |
| tree | b0eb3db13d9a21160ceb2fbb8d9e23ab1229659a /src/core/hle/kernel/server_session.h | |
| parent | 073653e858abf377fd1ebbdb071809c8830ce99d (diff) | |
fixup! Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.
Diffstat (limited to 'src/core/hle/kernel/server_session.h')
| -rw-r--r-- | src/core/hle/kernel/server_session.h | 2 |
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. |
