QMakeProjectManager: Replace foreach with ranged for loop

Change-Id: Ibdb526ac3e0cfbb0568e17c21a1b73f7749a84ed
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Jarek Kobus
2022-09-30 13:13:35 +02:00
parent 0d13cfe652
commit 8741ce6afc
10 changed files with 92 additions and 87 deletions

View File

@@ -557,7 +557,7 @@ const QList<Node *> FolderNode::nodes() const
return Utils::toRawPointer<QList>(m_nodes);
}
QList<FileNode*> FolderNode::fileNodes() const
QList<FileNode *> FolderNode::fileNodes() const
{
QList<FileNode *> result;
for (const std::unique_ptr<Node> &n : m_nodes) {