mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
checker: fix the argument mismatch of fn call (#12479)
This commit is contained in:
@ -1161,7 +1161,7 @@ fn is_excluding_latin(table &RangeTable, r rune) bool {
|
||||
}
|
||||
r32 := &table.r32
|
||||
if r32.len > 0 && r >= rune((*r32)[0].lo) {
|
||||
return is_32(r32, u32(r))
|
||||
return is_32(*r32, u32(r))
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
Reference in New Issue
Block a user