build/MSVC: fix "C4028: formal parameter different from declaration"

This commit is contained in:
Justin M. Keyes
2018-03-16 07:29:30 +01:00
parent 66a8b593e7
commit 960f093625
2 changed files with 2 additions and 2 deletions

View File

@@ -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 == '_';
}