summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/kernel/client_session.cpp4
-rw-r--r--src/core/hle/kernel/server_session.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/kernel/client_session.cpp b/src/core/hle/kernel/client_session.cpp
index c8be29b0a..c90fbc69d 100644
--- a/src/core/hle/kernel/client_session.cpp
+++ b/src/core/hle/kernel/client_session.cpp
@@ -9,8 +9,8 @@
9 9
10namespace Kernel { 10namespace Kernel {
11 11
12ClientSession::ClientSession() {} 12ClientSession::ClientSession() = default;
13ClientSession::~ClientSession() {} 13ClientSession::~ClientSession() = default;
14 14
15ResultVal<SharedPtr<ClientSession>> ClientSession::Create(SharedPtr<ServerSession> server_session, std::string name) { 15ResultVal<SharedPtr<ClientSession>> ClientSession::Create(SharedPtr<ServerSession> server_session, std::string name) {
16 SharedPtr<ClientSession> client_session(new ClientSession); 16 SharedPtr<ClientSession> client_session(new ClientSession);
diff --git a/src/core/hle/kernel/server_session.cpp b/src/core/hle/kernel/server_session.cpp
index 006d67e65..be334efd7 100644
--- a/src/core/hle/kernel/server_session.cpp
+++ b/src/core/hle/kernel/server_session.cpp
@@ -10,8 +10,8 @@
10 10
11namespace Kernel { 11namespace Kernel {
12 12
13ServerSession::ServerSession() {} 13ServerSession::ServerSession() = default;
14ServerSession::~ServerSession() {} 14ServerSession::~ServerSession() = default;
15 15
16ResultVal<SharedPtr<ServerSession>> ServerSession::Create(std::string name, std::shared_ptr<Service::SessionRequestHandler> hle_handler) { 16ResultVal<SharedPtr<ServerSession>> ServerSession::Create(std::string name, std::shared_ptr<Service::SessionRequestHandler> hle_handler) {
17 SharedPtr<ServerSession> server_session(new ServerSession); 17 SharedPtr<ServerSession> server_session(new ServerSession);