Procházet zdrojové kódy

yuzu/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.
Lioncash před 7 roky
rodič
revize
53a0221484
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/yuzu/main.cpp

+ 1 - 1
src/yuzu/main.cpp

@@ -1565,7 +1565,7 @@ void GMainWindow::UpdateUITheme() {
     emit UpdateThemedIcons();
     emit UpdateThemedIcons();
 }
 }
 
 
-void GMainWindow::SetDiscordEnabled(bool state) {
+void GMainWindow::SetDiscordEnabled([[maybe_unused]] bool state) {
 #ifdef USE_DISCORD_PRESENCE
 #ifdef USE_DISCORD_PRESENCE
     if (state) {
     if (state) {
         discord_rpc = std::make_unique<DiscordRPC::DiscordImpl>();
         discord_rpc = std::make_unique<DiscordRPC::DiscordImpl>();