Fix returned hash sum type

pull/1301/head
0x9ef 2019-07-24 21:20:04 +03:00 committed by Alexander Medvednikov
parent ca70d1f8a3
commit a3e9a36553
1 changed files with 2 additions and 2 deletions

View File

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