mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 15:21:56 -05: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