diff options
author | George Marques <george@gmarqu.es> | 2021-09-21 11:57:59 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2021-09-21 11:58:57 -0300 |
commit | 5107f9190b163b2b3c07853b0b2f1f0ce4f29a60 (patch) | |
tree | 9798b9a9f3aa6ded9a07cd16b91e1ef82e749ab9 | |
parent | 26e3b3908d2ef9be41c34979afbb0da0ddb38445 (diff) |
GDScript: Remove conversion assign mistakenly done when unneeded
-rw-r--r-- | modules/gdscript/gdscript_analyzer.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_analyzer.cpp b/modules/gdscript/gdscript_analyzer.cpp index ceb6d5a5f0..23e88ae059 100644 --- a/modules/gdscript/gdscript_analyzer.cpp +++ b/modules/gdscript/gdscript_analyzer.cpp @@ -1754,7 +1754,6 @@ void GDScriptAnalyzer::reduce_assignment(GDScriptParser::AssignmentNode *p_assig } else { // TODO: Warning in this case. mark_node_unsafe(p_assignment); - p_assignment->use_conversion_assign = true; } } } else { |