summaryrefslogtreecommitdiffstats
path: root/qmake/project.cpp
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2016-01-26 14:38:54 +0100
committerMarc Mutz <marc.mutz@kdab.com>2016-01-28 20:25:18 +0000
commite31541fa6f5f4df64fd44a9a895491c40b8c64b4 (patch)
tree3b49ee58476f6542789d5112dd182d3c2ed1d79a /qmake/project.cpp
parent8d7e913248aa1cad23447668d98911bba01faf4b (diff)
qmake: eradicate Q_FOREACH loops [needing qAsConst()]
... by replacing them with C++11 range-for loops. To avoid detaches of these mutable Qt containers, wrap the container in qAsConst(). Change-Id: If086bea06fe26232a7bb99fad8b09fce4dc74c27 Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com>
Diffstat (limited to 'qmake/project.cpp')
-rw-r--r--qmake/project.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/project.cpp b/qmake/project.cpp
index 3b7f28edbc..582b05a11f 100644
--- a/qmake/project.cpp
+++ b/qmake/project.cpp
@@ -152,7 +152,7 @@ void QMakeProject::dump() const
}
}
out.sort();
- foreach (const QString &v, out)
+ for (const QString &v : qAsConst(out))
puts(qPrintable(v));
}