mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	input_common/udp: std::move shared_ptr within Client constructor
Gets rid of a trivially avoidable atomic reference count increment and decrement.
This commit is contained in:
		
							parent
							
								
									8a0f8c3a4f
								
							
						
					
					
						commit
						fcdc191107
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -125,7 +125,7 @@ static void SocketLoop(Socket* socket) { | |||
| 
 | ||||
| Client::Client(std::shared_ptr<DeviceStatus> status, const std::string& host, u16 port, | ||||
|                u8 pad_index, u32 client_id) | ||||
|     : status(status) { | ||||
|     : status(std::move(status)) { | ||||
|     StartCommunication(host, port, pad_index, client_id); | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue