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.
This commit is contained in:
parent
52f12e303a
commit
d864d9bf03
@ -553,9 +553,9 @@ void GameList::LoadCompatibilityList() {
|
|||||||
QString directory = game["directory"].toString();
|
QString directory = game["directory"].toString();
|
||||||
QJsonArray ids = game["releases"].toArray();
|
QJsonArray ids = game["releases"].toArray();
|
||||||
|
|
||||||
for (const QJsonValueRef& value : ids) {
|
for (const QJsonValueRef& id_ref : ids) {
|
||||||
QJsonObject object = value.toObject();
|
QJsonObject id_object = id_ref.toObject();
|
||||||
QString id = object["id"].toString();
|
QString id = id_object["id"].toString();
|
||||||
compatibility_list.emplace(
|
compatibility_list.emplace(
|
||||||
id.toUpper().toStdString(),
|
id.toUpper().toStdString(),
|
||||||
std::make_pair(QString::number(compatibility), directory));
|
std::make_pair(QString::number(compatibility), directory));
|
||||||
|
Loading…
Reference in New Issue
Block a user