diff --git a/vlib/strconv/atoi.v b/vlib/strconv/atoi.v index c002ba6569..b20d5c2383 100644 --- a/vlib/strconv/atoi.v +++ b/vlib/strconv/atoi.v @@ -84,7 +84,6 @@ pub fn common_parse_uint2(s string, _base int, _bit_size int) (u64, int) { // Use compile-time constants for common cases. cutoff := max_u64 / u64(base) + u64(1) max_val := if bit_size == 64 { max_u64 } else { (u64(1)<