You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Use const references where possible for List range iterators
This commit is contained in:
@@ -854,7 +854,7 @@ void CodeTextEditor::_complete_request() {
|
||||
return;
|
||||
}
|
||||
|
||||
for (ScriptCodeCompletionOption &e : entries) {
|
||||
for (const ScriptCodeCompletionOption &e : entries) {
|
||||
Color font_color = completion_font_color;
|
||||
if (e.insert_text.begins_with("\"") || e.insert_text.begins_with("\'")) {
|
||||
font_color = completion_string_color;
|
||||
|
||||
Reference in New Issue
Block a user