mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 17:06:30 +00:00
build: enable MSVC level 3 warnings (#21934)
MSVC has 4 different warning levels: 1 (severe), 2 (significant), 3 (production quality) and 4 (informational). Enabling level 3 warnings mostly revealed conversion problems, similar to GCC/clang -Wconversion flag.
This commit is contained in:
@@ -12,7 +12,7 @@ typedef struct ucmd {
|
||||
char *uc_name; // The command name
|
||||
uint32_t uc_argt; // The argument type
|
||||
char *uc_rep; // The command's replacement string
|
||||
long uc_def; // The default value for a range/count
|
||||
int64_t uc_def; // The default value for a range/count
|
||||
int uc_compl; // completion type
|
||||
cmd_addr_T uc_addr_type; // The command's address type
|
||||
sctx_T uc_script_ctx; // SCTX where the command was defined
|
||||
|
Reference in New Issue
Block a user