mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2026-03-09 16:26:27 +00:00
Declare empty ServerSession and ClientSession constructors as default.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user