mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 08:56:29 +00:00
Enable -Wconversion: mark.c.
Refactoring summary: - MB_STRNICMP: Inlined. - MB_STRNCMP: Inlined.
This commit is contained in:

committed by
Justin M. Keyes

parent
690e43b461
commit
7dd48d7af0
@@ -4,8 +4,8 @@
|
||||
typedef long linenr_T; // line number type
|
||||
typedef int colnr_T; // column number type
|
||||
|
||||
#define MAXLNUM (0x7fffffffL) // maximum (invalid) line number
|
||||
#define MAXCOL (0x7fffffffL) // maximum column number, 31 bits
|
||||
#define MAXLNUM 0x7fffffff // maximum (invalid) line number
|
||||
#define MAXCOL 0x7fffffff // maximum column number, 31 bits
|
||||
|
||||
/*
|
||||
* position in file or buffer
|
||||
|
Reference in New Issue
Block a user