LSP: Fix iterator in enum API dump

This commit is contained in:
Rémi Verschelde 2020-12-09 13:34:29 +01:00
parent 8936c4057b
commit cf62289d24
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -724,7 +724,7 @@ Dictionary ExtendGDScriptParser::dump_class_api(const GDScriptParser::ClassNode
case ClassNode::Member::ENUM: { case ClassNode::Member::ENUM: {
Dictionary enum_dict; Dictionary enum_dict;
for (int j = 0; j < m.m_enum->values.size(); j++) { for (int j = 0; j < m.m_enum->values.size(); j++) {
enum_dict[m.m_enum->values[i].identifier->name] = m.m_enum->values[i].value; enum_dict[m.m_enum->values[j].identifier->name] = m.m_enum->values[j].value;
} }
Dictionary api; Dictionary api;