mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 08:05:46 +00:00
Declare empty ServerSession and ClientSession constructors as default.
This commit is contained in:
parent
811d684274
commit
4703561c9e
2 changed files with 4 additions and 4 deletions
|
@ -9,8 +9,8 @@
|
|||
|
||||
namespace Kernel {
|
||||
|
||||
ClientSession::ClientSession() {}
|
||||
ClientSession::~ClientSession() {}
|
||||
ClientSession::ClientSession() = default;
|
||||
ClientSession::~ClientSession() = default;
|
||||
|
||||
ResultVal<SharedPtr<ClientSession>> ClientSession::Create(SharedPtr<ServerSession> server_session, std::string name) {
|
||||
SharedPtr<ClientSession> client_session(new ClientSession);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue