diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-10-14 22:38:09 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-10-14 22:38:09 +0200 |
commit | d95c3c253cfc026696219a290c580e554e956872 (patch) | |
tree | 185c9e65a41c282d646ba08cb024d707f0e4fc69 /src/structs.h | |
parent | a2aad028305c306ecf33e0fd720fe1ed98596371 (diff) | |
download | vim-git-d95c3c253cfc026696219a290c580e554e956872.tar.gz |
patch 8.1.0477: tiny build failsv8.1.0477
Problem: Tiny build fails.
Solution: Add a dummy declaration for funccal_entry_T.
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index ebd94c361..560ce42b4 100644 --- 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 |