mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Declare empty ServerSession and ClientSession constructors as default.
This commit is contained in:
		
							parent
							
								
									ed210c32b3
								
							
						
					
					
						commit
						2ce61344d6
					
				@ -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);
 | 
			
		||||
 | 
			
		||||
@ -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);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user