refactor(IWYU): move typedefs out of globals.h (#26322)

This commit is contained in:
zeertzjq
2023-11-30 19:52:23 +08:00
committed by GitHub
parent 3b6dd8608d
commit c8e37a589a
33 changed files with 322 additions and 322 deletions

View File

@@ -6,8 +6,7 @@
#include "nvim/mark_defs.h"
#include "nvim/pos_defs.h"
/// Size in bytes of the hash used in the undo file.
enum { UNDO_HASH_SIZE = 32, };
enum { UNDO_HASH_SIZE = 32, }; ///< Size in bytes of the hash used in the undo file.
typedef struct u_header u_header_T;