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