textv3: fix possible var size issue

This commit is contained in:
itsmattkc
2022-10-02 14:35:36 -07:00
parent a6315a780d
commit 9d2a9a632c
+1 -1
View File
@@ -105,7 +105,7 @@ void TextGeneratorV3::Value(const NodeValueRow &value, const NodeGlobals &global
if (!args.empty()) {
QStringList list;
list.reserve(args.size());
for (int i=0; i<args.size(); i++) {
for (size_t i=0; i<args.size(); i++) {
list.append(args[i].toString());
}