summaryrefslogtreecommitdiffstats
path: root/qmake/property.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:15 +0000
commit8d7e913248aa1cad23447668d98911bba01faf4b (patch)
tree18182a877cffce9afa6f0ede18b3d02761087b6e /qmake/property.cpp
parent3f3140d38a75b8fdef8742d5fe9345cc3fe359cc (diff)
qmake: eradicate Q_FOREACH loops [rvalues]
... by replacing them with C++11 range-for loops. This is the simplest of the patch series: Q_FOREACH took a copy, so we do, too. Except we don't, since we're just catching the return value that comes out of the function (RVO). We can't feed the rvalues into range-for, because they are non-const and would thus detach. Change-Id: I5834620bf82f3442da7b2838363d351a0fb960a0 Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com>
Diffstat (limited to 'qmake/property.cpp')
-rw-r--r--qmake/property.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/qmake/property.cpp b/qmake/property.cpp
index 8fc46350c7..273963db2e 100644
--- a/qmake/property.cpp
+++ b/qmake/property.cpp
@@ -139,7 +139,8 @@ QMakeProperty::exec()
if(Option::qmake_mode == Option::QMAKE_QUERY_PROPERTY) {
if(Option::prop::properties.isEmpty()) {
initSettings();
- foreach (const QString &key, settings->childKeys()) {
+ const auto keys = settings->childKeys();
+ for (const QString &key : keys) {
QString val = settings->value(key).toString();
fprintf(stdout, "%s:%s\n", qPrintable(key), qPrintable(val));
}