summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/client_session.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-05-22 01:52:42 +0200
committerSubv <subv2112@gmail.com>2017-05-22 01:52:42 +0200
commit37347bfa380464a1ee1236d2a35f1ec1b697e4b6 (patch)
treeb8bd602646825ddfa78189f3d89d1a9437a543fa /src/core/hle/kernel/client_session.cpp
parentKernel: Remove a now unused enum and variable regarding a session's status. (diff)
downloadyuzu-37347bfa380464a1ee1236d2a35f1ec1b697e4b6.tar
yuzu-37347bfa380464a1ee1236d2a35f1ec1b697e4b6.tar.gz
yuzu-37347bfa380464a1ee1236d2a35f1ec1b697e4b6.tar.bz2
yuzu-37347bfa380464a1ee1236d2a35f1ec1b697e4b6.tar.lz
yuzu-37347bfa380464a1ee1236d2a35f1ec1b697e4b6.tar.xz
yuzu-37347bfa380464a1ee1236d2a35f1ec1b697e4b6.tar.zst
yuzu-37347bfa380464a1ee1236d2a35f1ec1b697e4b6.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/client_session.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/hle/kernel/client_session.cpp b/src/core/hle/kernel/client_session.cpp
index 6737b204b..e297b7464 100644
--- a/src/core/hle/kernel/client_session.cpp
+++ b/src/core/hle/kernel/client_session.cpp
@@ -25,14 +25,6 @@ ClientSession::~ClientSession() {
parent->client = nullptr;
}
-ResultVal<SharedPtr<ClientSession>> ClientSession::Create(std::string name) {
- SharedPtr<ClientSession> client_session(new ClientSession);
-
- client_session->name = std::move(name);
- client_session->parent = nullptr;
- return MakeResult<SharedPtr<ClientSession>>(std::move(client_session));
-}
-
ResultCode ClientSession::SendSyncRequest() {
// Signal the server session that new data is available
if (parent->server)