From 9d40c63c7dc8c3eb3886c58dcd334bc7f37eceba Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 24 Jun 2020 19:05:29 +0200 Subject: patch 8.2.1048: build failure without the eval feature Problem: Build failure without the eval feature. Solution: Add dummy typedef. --- src/structs.h | 4 ++++ src/version.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/structs.h b/src/structs.h index 3a9bbd33c6..0ac486406b 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1794,6 +1794,10 @@ typedef struct { int dummy; } scriptitem_T; +typedef struct +{ + int dummy; +} evalarg_T; #endif // Struct passed between functions dealing with function call execution. diff --git a/src/version.c b/src/version.c index e383c1843e..4e2c553799 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1048, /**/ 1047, /**/ -- cgit v1.2.3