We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc1dafa commit fef8064Copy full SHA for fef8064
2 files changed
src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
750
751
static int included_patches[] =
752
{ /* Add new patch number below this line */
753
+/**/
754
+ 2461,
755
/**/
756
2460,
757
src/vim9execute.c
@@ -897,11 +897,11 @@ allocate_if_null(typval_T *tv)
897
{
898
case VAR_LIST:
899
if (tv->vval.v_list == NULL)
900
- rettv_list_alloc(tv);
+ (void)rettv_list_alloc(tv);
901
break;
902
case VAR_DICT:
903
if (tv->vval.v_dict == NULL)
904
- rettv_dict_alloc(tv);
+ (void)rettv_dict_alloc(tv);
905
906
default:
907
0 commit comments