mirror of
https://github.com/neovim/neovim.git
synced 2025-10-02 16:08:36 +00:00
build/MSVC: fix "C4028: formal parameter different from declaration"
This commit is contained in:
@@ -146,7 +146,7 @@ static inline bool ascii_isxdigit(int c)
|
||||
/// Checks if `c` is an “identifier” character
|
||||
///
|
||||
/// That is, whether it is alphanumeric character or underscore.
|
||||
static inline bool ascii_isident(const int c)
|
||||
static inline bool ascii_isident(int c)
|
||||
{
|
||||
return ASCII_ISALNUM(c) || c == '_';
|
||||
}
|
||||
|
Reference in New Issue
Block a user