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

Fix returned hash sum type

This commit is contained in:
0x9ef 2019-07-24 21:20:04 +03:00 committed by Alexander Medvednikov
parent ca70d1f8a3
commit a3e9a36553

View File

@ -13,9 +13,9 @@ interface Hash {
}
interface Hash32 {
sum32() uint32
sum32() u32
}
interface Hash64 {
sum64() uint64
sum64() u64
}