diff options
| author | Subv <subv2112@gmail.com> | 2016-12-14 12:33:49 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2016-12-14 12:45:36 -0500 |
| commit | 016307ae656afc85ab59a5c2598205ef81f99231 (patch) | |
| tree | ae2031654a2178e8ea824928be03fd8409f81222 /src/core/hle/kernel/client_session.h | |
| parent | ebbb55ec8f827096f1c743cc4b7f4a2aa05a3ed3 (diff) | |
Fixed the codestyle to match our clang-format rules.
Diffstat (limited to 'src/core/hle/kernel/client_session.h')
| -rw-r--r-- | src/core/hle/kernel/client_session.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/core/hle/kernel/client_session.h b/src/core/hle/kernel/client_session.h index fedbd0625..ed468dec6 100644 --- a/src/core/hle/kernel/client_session.h +++ b/src/core/hle/kernel/client_session.h @@ -4,8 +4,8 @@ #pragma once -#include <string> #include <memory> +#include <string> #include "common/common_types.h" @@ -44,9 +44,9 @@ public: */ ResultCode SendSyncRequest(); - std::string name; ///< Name of client port (optional) - ServerSession* server_session; ///< The server session associated with this client session. - SessionStatus session_status; ///< The session's current status. + std::string name; ///< Name of client port (optional) + ServerSession* server_session; ///< The server session associated with this client session. + SessionStatus session_status; ///< The session's current status. private: ClientSession(); @@ -58,7 +58,8 @@ private: * @param name Optional name of client session * @return The created client session */ - static ResultVal<SharedPtr<ClientSession>> Create(ServerSession* server_session, std::string name = "Unknown"); + static ResultVal<SharedPtr<ClientSession>> Create(ServerSession* server_session, + std::string name = "Unknown"); }; } // namespace |
