summaryrefslogtreecommitdiffstats
path: root/src/tools/moc/generator.cpp
diff options
context:
space:
mode:
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);
}