mirror of
https://github.com/neovim/neovim.git
synced 2026-03-31 21:02:11 +00:00
vim-patch:9.0.1033: tiny build fails because of conflicting typedef
Problem: Tiny build fails because of conflicting typedef.
Solution: Remove one typedef.
83c43ab319
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -53,7 +53,7 @@ typedef struct dictvar_S dict_T;
|
||||
typedef struct partial_S partial_T;
|
||||
typedef struct blobvar_S blob_T;
|
||||
|
||||
typedef struct ufunc ufunc_T;
|
||||
typedef struct ufunc_S ufunc_T;
|
||||
|
||||
typedef enum {
|
||||
kCallbackNone = 0,
|
||||
@@ -321,7 +321,7 @@ struct funccall_S {
|
||||
};
|
||||
|
||||
/// Structure to hold info for a user function.
|
||||
struct ufunc {
|
||||
struct ufunc_S {
|
||||
int uf_varargs; ///< variable nr of arguments
|
||||
int uf_flags;
|
||||
int uf_calls; ///< nr of active calls
|
||||
|
||||
Reference in New Issue
Block a user