mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 03:48:23 -05:00
Declare empty ServerSession and ClientSession constructors as default.
This commit is contained in:
@ -10,8 +10,8 @@
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
ServerSession::ServerSession() {}
|
||||
ServerSession::~ServerSession() {}
|
||||
ServerSession::ServerSession() = default;
|
||||
ServerSession::~ServerSession() = default;
|
||||
|
||||
ResultVal<SharedPtr<ServerSession>> ServerSession::Create(std::string name, std::shared_ptr<Service::SessionRequestHandler> hle_handler) {
|
||||
SharedPtr<ServerSession> server_session(new ServerSession);
|
||||
|
Reference in New Issue
Block a user