mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
clang/'Dead initialization': don't assign unused value to variable "string" #15015
This commit is contained in:
parent
77b33e4b9f
commit
e2bc7e321b
@ -1790,7 +1790,7 @@ static void parse_border_style(Object style, FloatConfig *fconfig, Error *err)
|
||||
}
|
||||
for (size_t i = 0; i < size; i++) {
|
||||
Object iytem = arr.items[i];
|
||||
String string = NULL_STRING;
|
||||
String string;
|
||||
int hl_id = 0;
|
||||
if (iytem.type == kObjectTypeArray) {
|
||||
Array iarr = iytem.data.array;
|
||||
|
Loading…
Reference in New Issue
Block a user