Declare empty ServerSession and ClientSession constructors as default.

This commit is contained in:
Subv
2016-12-02 22:58:02 -05:00
parent ed210c32b3
commit 2ce61344d6
2 changed files with 4 additions and 4 deletions

View File

@ -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);