summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/qml/common/qv4compileddata_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/common/qv4compileddata_p.h b/src/qml/common/qv4compileddata_p.h
index fbd1b564c0..db2b027bf0 100644
--- a/src/qml/common/qv4compileddata_p.h
+++ b/src/qml/common/qv4compileddata_p.h
@@ -1537,7 +1537,7 @@ public:
if (index < data->stringTableSize)
return data->stringAtInternal(index);
- const uint dynamicIndex = index - data->stringTableSize;
+ const qsizetype dynamicIndex = index - data->stringTableSize;
Q_ASSERT(dynamicIndex < dynamicStrings.size());
return dynamicStrings.at(dynamicIndex);
}