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

vlib: prepare atoi.v and utf8.v for -Wimpure-v

This commit is contained in:
Delyan Angelov
2020-12-15 10:17:46 +02:00
parent bd07177ef0
commit d155d8d3f0
4 changed files with 77 additions and 80 deletions

View File

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