aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/client_session.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-23 16:13:19 -0500
committerbunnei <bunneidev@gmail.com>2018-01-24 22:18:54 -0500
commit67758857e4203cebc9a5815c6b0293c0aad0e598 (patch)
tree6d39ebcb39695f3117864416c56d16edb4611514 /src/core/hle/kernel/client_session.h
parent932fa94af747a59fa6f69aab6dff1fd9a802def4 (diff)
hle: Remove Domain and SyncObject kernel objects.
Diffstat (limited to 'src/core/hle/kernel/client_session.h')
-rw-r--r--src/core/hle/kernel/client_session.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/client_session.h b/src/core/hle/kernel/client_session.h
index d6ab4f893..f2765cc1e 100644
--- a/src/core/hle/kernel/client_session.h
+++ b/src/core/hle/kernel/client_session.h
@@ -7,7 +7,6 @@
#include <memory>
#include <string>
#include "common/common_types.h"
-#include "core/hle/kernel/sync_object.h"
#include "core/hle/result.h"
namespace Kernel {
@@ -16,7 +15,7 @@ class ServerSession;
class Session;
class Thread;
-class ClientSession final : public SyncObject {
+class ClientSession final : public Object {
public:
friend class ServerSession;