Merge pull request #10624 from Minty-Meeo/resolve-gcc-warnings

Resolve Linux GCC Warnings
This commit is contained in:
JosJuice 2022-07-02 09:17:44 +02:00 committed by GitHub
commit 07a15a3228
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 40 additions and 29 deletions

View file

@ -10,6 +10,7 @@
#include <QProgressDialog>
#include <QPushButton>
#include "Common/Assert.h"
#include "Common/FileUtil.h"
#include "Common/Flag.h"
@ -71,6 +72,9 @@ static void ShowResult(QWidget* parent, WiiUtils::UpdateResult result)
QObject::tr("The game disc does not contain any usable "
"update information."));
break;
default:
ASSERT(false);
break;
}
}