mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Fix CI build error
Fixes potential use of uninitialized variable.
This commit is contained in:
@@ -2002,7 +2002,7 @@ void CodeEdit::confirm_code_completion(bool p_replace) {
|
||||
return;
|
||||
}
|
||||
|
||||
char32_t caret_last_completion_char;
|
||||
char32_t caret_last_completion_char = 0;
|
||||
begin_complex_operation();
|
||||
Vector<int> caret_edit_order = get_caret_index_edit_order();
|
||||
for (const int &i : caret_edit_order) {
|
||||
|
||||
Reference in New Issue
Block a user