mirror of
https://github.com/vlang/v.git
synced 2025-08-04 02:07:28 -04:00
ci: fix math.bits.max_u64/math.bits.max_u32
This commit is contained in:
parent
d3bffd6cc8
commit
d91634985f
@ -24,8 +24,8 @@ const (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
// save importing math mod just for these
|
// save importing math mod just for these
|
||||||
max_u32 = 4294967295
|
max_u32 = u32(4294967295)
|
||||||
max_u64 = 18446744073709551615
|
max_u64 = u64(18446744073709551615)
|
||||||
)
|
)
|
||||||
|
|
||||||
// --- LeadingZeros ---
|
// --- LeadingZeros ---
|
||||||
|
Loading…
x
Reference in New Issue
Block a user