From 7e39a0405b79af7c6736830b82734e581084c3a5 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Mon, 17 May 2021 21:19:56 +0200 Subject: [PATCH] =?UTF-8?q?DolphinQt,=20VideoBackends:=20Fix=20all=20cases?= =?UTF-8?q?=20of=20-Wswitch=20in=20gcc=C2=A011?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source/Core/DolphinQt/GameList/GameListModel.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/DolphinQt/GameList/GameListModel.cpp b/Source/Core/DolphinQt/GameList/GameListModel.cpp index 0c9921ba38..487791fbe9 100644 --- a/Source/Core/DolphinQt/GameList/GameListModel.cpp +++ b/Source/Core/DolphinQt/GameList/GameListModel.cpp @@ -195,6 +195,8 @@ QVariant GameListModel::data(const QModelIndex& index, int role) const return tags.join(QStringLiteral(", ")); } + default: + break; } return QVariant(); @@ -231,6 +233,8 @@ QVariant GameListModel::headerData(int section, Qt::Orientation orientation, int return tr("Compression"); case Column::Tags: return tr("Tags"); + default: + break; } return QVariant(); }