mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.3119: compiler warning for unused argument
Problem: Compiler warning for unused argument. Solution: Add UNUSED.
This commit is contained in:
parent
5ede5b231e
commit
6a9e5c69cf
@ -522,7 +522,7 @@ ret_list_dict_any(int argcount UNUSED, type_T **argtypes UNUSED)
|
||||
return &t_list_dict_any;
|
||||
}
|
||||
static type_T *
|
||||
ret_list_items(int argcount, type_T **argtypes UNUSED)
|
||||
ret_list_items(int argcount UNUSED, type_T **argtypes UNUSED)
|
||||
{
|
||||
return &t_list_list_any;
|
||||
}
|
||||
|
@ -755,6 +755,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
3119,
|
||||
/**/
|
||||
3118,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user