aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/client_session.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-01-04 23:24:06 -0500
committerSubv <subv2112@gmail.com>2017-05-15 11:22:16 -0500
commitce5bc477ca0cd59df4922c1c6cd245db365dc7bc (patch)
tree711a57a2134fb9b2029db5e9a2b5e8be122cd739 /src/core/hle/kernel/client_session.h
parentddfabf31330c0c8e0558a714b6d7e1f1948b73ed (diff)
Kernel: Remove a now unused enum and variable regarding a session's status.
Diffstat (limited to 'src/core/hle/kernel/client_session.h')
-rw-r--r--src/core/hle/kernel/client_session.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/hle/kernel/client_session.h b/src/core/hle/kernel/client_session.h
index adb2d0b5f..5ec4ee901 100644
--- a/src/core/hle/kernel/client_session.h
+++ b/src/core/hle/kernel/client_session.h
@@ -16,12 +16,6 @@ namespace Kernel {
class ServerSession;
class Session;
-enum class SessionStatus {
- Open = 1,
- ClosedByClient = 2,
- ClosedBYServer = 3,
-};
-
class ClientSession final : public Object {
public:
friend class ServerSession;
@@ -49,7 +43,6 @@ public:
/// The parent session, which links to the server endpoint.
std::shared_ptr<Session> parent;
- SessionStatus session_status; ///< The session's current status.
private:
ClientSession();