mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.0173: build fails with old compiler
Problem: Build fails with old compiler. Solution: Do not use anonymous unions. (John Marriott)
This commit is contained in:
@@ -1410,13 +1410,13 @@ struct listvar_S
|
||||
varnumber_T lv_start;
|
||||
varnumber_T lv_end;
|
||||
int lv_stride;
|
||||
};
|
||||
} nonmat;
|
||||
struct { // used for materialized list
|
||||
listitem_T *lv_last; // last item, NULL if none
|
||||
listitem_T *lv_idx_item; // when not NULL item at index "lv_idx"
|
||||
int lv_idx; // cached index of an item
|
||||
};
|
||||
};
|
||||
} mat;
|
||||
} lv_u;
|
||||
list_T *lv_copylist; // copied list used by deepcopy()
|
||||
list_T *lv_used_next; // next list in used lists list
|
||||
list_T *lv_used_prev; // previous list in used lists list
|
||||
|
Reference in New Issue
Block a user