0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -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:
Bram Moolenaar
2020-01-29 21:27:21 +01:00
parent 4549ece47c
commit 0ff6aad393
9 changed files with 88 additions and 84 deletions

View File

@@ -2628,7 +2628,7 @@ ListAssSlice(ListObject *self, Py_ssize_t first,
if (li)
lastaddedli = li->li_prev;
else
lastaddedli = l->lv_last;
lastaddedli = l->lv_u.mat.lv_last;
numadded++;
}
clear_tv(&v);