Просмотр исходного кода

game_list: Resolve variable shadowing within LoadCompatibilityList()

"value" is already a used variable name within the outermost ranged-for
loop, so this variable was shadowing the outer one. This isn't a bug,
but it will get rid of a -Wshadow warning.
Lioncash 7 лет назад
Родитель
Сommit
0e61e8362f
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      src/yuzu/game_list.cpp

+ 3 - 3
src/yuzu/game_list.cpp

@@ -374,9 +374,9 @@ void GameList::LoadCompatibilityList() {
             QString directory = game["directory"].toString();
             QJsonArray ids = game["releases"].toArray();
 
-            for (const QJsonValueRef& value : ids) {
-                QJsonObject object = value.toObject();
-                QString id = object["id"].toString();
+            for (const QJsonValueRef& id_ref : ids) {
+                QJsonObject id_object = id_ref.toObject();
+                QString id = id_object["id"].toString();
                 compatibility_list.emplace(
                     id.toUpper().toStdString(),
                     std::make_pair(QString::number(compatibility), directory));