comparison src/structs.h @ 20994:15ef156a6e75 v8.2.1048

patch 8.2.1048: build failure without the eval feature Commit: https://github.com/vim/vim/commit/9d40c63c7dc8c3eb3886c58dcd334bc7f37eceba Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 24 19:05:29 2020 +0200 patch 8.2.1048: build failure without the eval feature Problem: Build failure without the eval feature. Solution: Add dummy typedef.
author Bram Moolenaar <Bram@vim.org>
date Wed, 24 Jun 2020 19:15:04 +0200
parents 7ee565134d4a
children 3af71cbcfdbe
comparison
equal deleted inserted replaced
20993:bf27f31717f6 20994:15ef156a6e75
1792 } funccal_entry_T; 1792 } funccal_entry_T;
1793 typedef struct 1793 typedef struct
1794 { 1794 {
1795 int dummy; 1795 int dummy;
1796 } scriptitem_T; 1796 } scriptitem_T;
1797 typedef struct
1798 {
1799 int dummy;
1800 } evalarg_T;
1797 #endif 1801 #endif
1798 1802
1799 // Struct passed between functions dealing with function call execution. 1803 // Struct passed between functions dealing with function call execution.
1800 // 1804 //
1801 // "argv_func", when not NULL, can be used to fill in arguments only when the 1805 // "argv_func", when not NULL, can be used to fill in arguments only when the