ProjectExplorer: Limit the usage of qMakePair

Make the code less verbose.

Change-Id: If9fe08a6a7538d34c80ca97a2aec21a2bd6e5d22
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Jarek Kobus
2022-09-30 15:57:27 +02:00
parent 50f2f57f6a
commit 898053533a
14 changed files with 56 additions and 61 deletions

View File

@@ -635,7 +635,7 @@ QStringList SessionManagerPrivate::dependenciesOrder() const
return p->projectFilePath().toString() == proPath;
});
});
unordered << qMakePair(proName, depList);
unordered.push_back({proName, depList});
}
while (!unordered.isEmpty()) {