mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Fix CI build error
Fixes potential use of uninitialized variable.
(cherry picked from commit 37362202a4)
This commit is contained in:
parent
08b825396f
commit
4616de0c5d
1 changed files with 1 additions and 1 deletions
|
|
@ -1968,7 +1968,7 @@ void CodeEdit::confirm_code_completion(bool p_replace) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
char32_t caret_last_completion_char;
|
char32_t caret_last_completion_char = 0;
|
||||||
begin_complex_operation();
|
begin_complex_operation();
|
||||||
Vector<int> caret_edit_order = get_caret_index_edit_order();
|
Vector<int> caret_edit_order = get_caret_index_edit_order();
|
||||||
for (const int &i : caret_edit_order) {
|
for (const int &i : caret_edit_order) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue