File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -1260,21 +1260,22 @@ struct listwatch_S
1260
1260
1261
1261
/*
1262
1262
* Structure to hold info about a list.
1263
+ * Order of members is optimized to reduce padding.
1263
1264
*/
1264
1265
struct listvar_S
1265
1266
{
1266
1267
listitem_T * lv_first ; /* first item, NULL if none */
1267
1268
listitem_T * lv_last ; /* last item, NULL if none */
1268
- int lv_refcount ; /* reference count */
1269
- int lv_len ; /* number of items */
1270
1269
listwatch_T * lv_watch ; /* first watcher, NULL if none */
1271
- int lv_idx ; /* cached index of an item */
1272
1270
listitem_T * lv_idx_item ; /* when not NULL item at index "lv_idx" */
1273
- int lv_copyID ; /* ID used by deepcopy() */
1274
1271
list_T * lv_copylist ; /* copied list used by deepcopy() */
1275
- char lv_lock ; /* zero, VAR_LOCKED, VAR_FIXED */
1276
1272
list_T * lv_used_next ; /* next list in used lists list */
1277
1273
list_T * lv_used_prev ; /* previous list in used lists list */
1274
+ int lv_refcount ; /* reference count */
1275
+ int lv_len ; /* number of items */
1276
+ int lv_idx ; /* cached index of an item */
1277
+ int lv_copyID ; /* ID used by deepcopy() */
1278
+ char lv_lock ; /* zero, VAR_LOCKED, VAR_FIXED */
1278
1279
};
1279
1280
1280
1281
/*
Original file line number Diff line number Diff line change @@ -766,6 +766,8 @@ static char *(features[]) =
766
766
767
767
static int included_patches [] =
768
768
{ /* Add new patch number below this line */
769
+ /**/
770
+ 1590 ,
769
771
/**/
770
772
1589 ,
771
773
/**/
You can’t perform that action at this time.
0 commit comments