ci: fix math.bits.max_u64/math.bits.max_u32

pull/7342/head
Delyan Angelov 2020-12-15 10:52:57 +02:00
parent d3bffd6cc8
commit d91634985f
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ const (
const (
// save importing math mod just for these
max_u32 = 4294967295
max_u64 = 18446744073709551615
max_u32 = u32(4294967295)
max_u64 = u64(18446744073709551615)
)
// --- LeadingZeros ---