mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 14:38:32 +00:00
refactor: remove redundant struct names
A struct can be anonymous if only its typedef is used.
This commit is contained in:
@@ -86,7 +86,7 @@ enum GRegFlags {
|
||||
};
|
||||
|
||||
/// Definition of one register
|
||||
typedef struct yankreg {
|
||||
typedef struct {
|
||||
char **y_array; ///< Pointer to an array of line pointers.
|
||||
size_t y_size; ///< Number of lines in y_array.
|
||||
MotionType y_type; ///< Register type
|
||||
|
Reference in New Issue
Block a user