mirror of
https://github.com/neovim/neovim.git
synced 2026-02-18 17:38:32 +00:00
refactor: remove long
long is 32-bits even on 64-bit windows which makes the type suboptimal for a codebase meant to be cross-platform.
This commit is contained in:
@@ -2466,8 +2466,8 @@ int diffopt_changed(void)
|
||||
int linematch_lines_new = 0;
|
||||
int diff_flags_new = 0;
|
||||
int diff_foldcolumn_new = 2;
|
||||
long diff_algorithm_new = 0;
|
||||
long diff_indent_heuristic = 0;
|
||||
int diff_algorithm_new = 0;
|
||||
int diff_indent_heuristic = 0;
|
||||
|
||||
char *p = p_dip;
|
||||
while (*p != NUL) {
|
||||
|
||||
Reference in New Issue
Block a user