aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/srv.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2016-12-08 11:06:19 -0500
committerSubv <subv2112@gmail.com>2016-12-08 11:06:19 -0500
commitf9bcf895103e5a6d99f5fe755bcac92b7781fd38 (patch)
treeaebba4794da82175756a09e7d4d1de8d835bf412 /src/core/hle/service/srv.cpp
parentc93c5a72bb46796e898f54a7c13dfb8d941ddd4d (diff)
Use std::move where appropriate.
Diffstat (limited to 'src/core/hle/service/srv.cpp')
-rw-r--r--src/core/hle/service/srv.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index ff7a84347..37420201b 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -87,12 +87,7 @@ static void GetServiceHandle(Service::Interface* self) {
if (it != Service::g_srv_services.end()) {
auto client_port = it->second;
- // Note: Threads do not wait for the server endpoint to call
- // AcceptSession before returning from this call.
-
- // Connect to the port and retrieve the client endpoint of the connection Session.
auto client_session = client_port->Connect();
-
res = client_session.Code();
if (client_session.Succeeded()) {