mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #4441 from FearlessTobi/port-1688
Port yuzu-emu/yuzu#1688: "service: Mark MakeFunctionString with the [[maybe_unused]] attribute."
This commit is contained in:
		
						commit
						a7d6bc4e84
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -117,8 +117,8 @@ const std::array<ServiceModuleInfo, 40> service_module_map{ | |||
|  * Creates a function string for logging, complete with the name (or header code, depending | ||||
|  * on what's passed in) the port name, and all the cmd_buff arguments. | ||||
|  */ | ||||
| static std::string MakeFunctionString(const char* name, const char* port_name, | ||||
|                                       const u32* cmd_buff) { | ||||
| [[maybe_unused]] static std::string MakeFunctionString(const char* name, const char* port_name, | ||||
|                                                        const u32* cmd_buff) { | ||||
|     // Number of params == bits 0-5 + bits 6-11
 | ||||
|     int num_params = (cmd_buff[0] & 0x3F) + ((cmd_buff[0] >> 6) & 0x3F); | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue