1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: fix atoi.v's max_u64

This commit is contained in:
Delyan Angelov 2020-12-15 10:56:56 +02:00
parent d91634985f
commit 058258bc72
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -9,7 +9,7 @@ const (
// int_size = 32 << (~u32(0) >> 63) // int_size = 32 << (~u32(0) >> 63)
// max_u64 = u64(u64(1 << 63) - 1) // max_u64 = u64(u64(1 << 63) - 1)
int_size = 32 int_size = 32
max_u64 = 18446744073709551615 // as u64 // use this until we add support max_u64 = u64(18446744073709551615) // as u64 // use this until we add support
) )
pub fn byte_to_lower(c byte) byte { pub fn byte_to_lower(c byte) byte {