mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 10:56:31 +00:00
refactor(grid): move out grid_* functions from screen.c
Also normalize some types. use "size_t" for unsigned array offsets. Fix -Wconversion issues missed as screen.c is missing this check.
This commit is contained in:
@@ -50,7 +50,7 @@ struct ScreenGrid {
|
||||
|
||||
schar_T *chars;
|
||||
sattr_T *attrs;
|
||||
unsigned *line_offset;
|
||||
size_t *line_offset;
|
||||
char_u *line_wraps;
|
||||
|
||||
// last column that was drawn (not cleared with the default background).
|
||||
|
Reference in New Issue
Block a user