changeset 14931:9c030bc201a6 v8.1.0477

patch 8.1.0477: tiny build fails commit https://github.com/vim/vim/commit/d95c3c253cfc026696219a290c580e554e956872 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 14 22:38:09 2018 +0200 patch 8.1.0477: tiny build fails Problem: Tiny build fails. Solution: Add a dummy declaration for funccal_entry_T.
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Oct 2018 22:45:05 +0200
parents 15577c6db766
children 0757a2eb7001
files src/structs.h src/version.c
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/structs.h
+++ b/src/structs.h
@@ -1445,6 +1445,10 @@ typedef struct
 {
     int	    dummy;
 } funcdict_T;
+typedef struct
+{
+    int	    dummy;
+} funccal_entry_T;
 #endif
 
 struct partial_S
--- a/src/version.c
+++ b/src/version.c
@@ -793,6 +793,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    477,
+/**/
     476,
 /**/
     475,