From 058258bc726844471883c9363a452577842a5e74 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 15 Dec 2020 10:56:56 +0200 Subject: [PATCH] ci: fix atoi.v's max_u64 --- vlib/strconv/atoi.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/strconv/atoi.v b/vlib/strconv/atoi.v index a9c3bdb2db..56a4445069 100644 --- a/vlib/strconv/atoi.v +++ b/vlib/strconv/atoi.v @@ -9,7 +9,7 @@ const ( // int_size = 32 << (~u32(0) >> 63) // max_u64 = u64(u64(1 << 63) - 1) 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 {