mirror of
https://github.com/vlang/v.git
synced 2025-09-17 00:12:26 +03:00
all: replace []byte with []u8
This commit is contained in:
parent
0527ac633e
commit
fb192d949b
164 changed files with 533 additions and 533 deletions
|
@ -22,6 +22,6 @@ pub fn sum64_string(key string, seed u64) u64 {
|
|||
}
|
||||
|
||||
[inline]
|
||||
pub fn sum64(key []byte, seed u64) u64 {
|
||||
pub fn sum64(key []u8, seed u64) u64 {
|
||||
return wyhash_c(&u8(key.data), u64(key.len), seed)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue