You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Static analyzer fixes:
Removes unused code in OS. Fixes return types. Fixes few typos.
This commit is contained in:
@@ -723,7 +723,7 @@ Dictionary ExtendGDScriptParser::dump_class_api(const GDScriptParser::ClassNode
|
||||
} break;
|
||||
case ClassNode::Member::ENUM: {
|
||||
Dictionary enum_dict;
|
||||
for (int j = 0; j < m.m_enum->values.size(); i++) {
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user