mirror of
https://github.com/neovim/neovim.git
synced 2025-10-18 07:41:51 +00:00
lib/kvec: Remove useless type argument from kv_push macros
This commit is contained in:
@@ -4950,7 +4950,7 @@ int bufhl_add_hl(buf_T *buf,
|
||||
bufhl_vec_T* lineinfo = map_ref(linenr_T, bufhl_vec_T)(buf->b_bufhl_info,
|
||||
lnum, true);
|
||||
|
||||
bufhl_hl_item_T *hlentry = kv_pushp(bufhl_hl_item_T, *lineinfo);
|
||||
bufhl_hl_item_T *hlentry = kv_pushp(*lineinfo);
|
||||
hlentry->src_id = src_id;
|
||||
hlentry->hl_id = hl_id;
|
||||
hlentry->start = col_start;
|
||||
|
Reference in New Issue
Block a user