summaryrefslogtreecommitdiffstats
path: root/src/tools/moc/generator.cpp
diff options
context:
space:
mode:
authorDavid Skoland <david.skoland@qt.io>2020-10-06 18:11:26 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2020-10-17 11:56:30 +0200
commit4a7280598b99379425043a8773dd274e5bcb24d5 (patch)
tree58e431ba1a8d2a2c062de98fbfea6faf135387f3 /src/tools/moc/generator.cpp
parentb61d67f897bcf4cb11f08b322ed97bf12988f741 (diff)
Fix Clang compiler warnings (-Wrange-loop-analysis)
In a macOS environment, Clang throws a number of compiler warnings about loop variables when building qtbase. See task for more info about the environment. This changes a handful of loop variables, like QJsonValue references into QJsonValueRefs. Task-number: QTBUG-87216 Pick-to: 5.15 Change-Id: I26006efd7c75c2d56ebc7f7efb4c9bdcabe92e8b Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/tools/moc/generator.cpp')
-rw-r--r--src/tools/moc/generator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/moc/generator.cpp b/src/tools/moc/generator.cpp
index c562d4acc1..c49419c530 100644
--- a/src/tools/moc/generator.cpp
+++ b/src/tools/moc/generator.cpp
@@ -1527,7 +1527,7 @@ static CborError jsonArrayToCbor(CborEncoder *parent, const QJsonArray &a)
{
CborEncoder array;
cbor_encoder_create_array(parent, &array, a.size());
- for (const QJsonValue &v : a)
+ for (const QJsonValue v : a)
jsonValueToCbor(&array, v);
return cbor_encoder_close_container(parent, &array);
}