mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
all: byte => u8
This commit is contained in:
@@ -98,7 +98,7 @@ pub fn common_parse_uint2(s string, _base int, _bit_size int) (u64, int) {
|
||||
} else {
|
||||
return n, i + 1
|
||||
}
|
||||
if d >= byte(base) {
|
||||
if d >= u8(base) {
|
||||
return n, i + 1
|
||||
}
|
||||
if n >= cutoff {
|
||||
|
||||
Reference in New Issue
Block a user