mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
refactor: remove redundant struct names
A struct can be anonymous if only its typedef is used.
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
// "exp_name" NULL or non-NULL, to be freed later.
|
||||
// "tv" points to the Dictionary typval_T
|
||||
// "newkey" is the key for the new item.
|
||||
typedef struct lval_S {
|
||||
typedef struct {
|
||||
const char *ll_name; ///< Start of variable name (can be NULL).
|
||||
size_t ll_name_len; ///< Length of the .ll_name.
|
||||
char *ll_exp_name; ///< NULL or expanded name in allocated memory.
|
||||
|
Reference in New Issue
Block a user