mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	citra_qt/main: Apply the [[maybe_unused]] attribute to the parameter of SetDiscordEnabled()
Depending on whether or not USE_DISCORD_PRESENCE is defined, the "state" parameter can be used or unused. If USE_DISCORD_PRESENCE is not defined, the parameter will be considered unused, which can lead to compiler warnings. So, we can explicitly mark it with [[maybe_unused]] to inform the compiler that this is intentional.
This commit is contained in:
		
							parent
							
								
									b01b94d843
								
							
						
					
					
						commit
						15ecc38ada
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -1714,7 +1714,7 @@ void GMainWindow::RetranslateStatusBar() { | |||
|     multiplayer_state->retranslateUi(); | ||||
| } | ||||
| 
 | ||||
| void GMainWindow::SetDiscordEnabled(bool state) { | ||||
| void GMainWindow::SetDiscordEnabled([[maybe_unused]] bool state) { | ||||
| #ifdef USE_DISCORD_PRESENCE | ||||
|     if (state) { | ||||
|         discord_rpc = std::make_unique<DiscordRPC::DiscordImpl>(); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue