浏览代码

Remove `auto_cast`

gingerBill 2 年之前
父节点
当前提交
a5a7226885
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/hash/xxhash/xxhash_3.odin

+ 1 - 1
core/hash/xxhash/xxhash_3.odin

@@ -118,7 +118,7 @@ XXH_mul_64_to_128_fold_64 :: #force_inline proc(lhs, rhs: xxh_u64) -> (res: xxh_
 }
 
 @(optimization_mode="speed")
-XXH_xorshift_64 :: #force_inline proc(v: xxh_u64, auto_cast shift: uint) -> (res: xxh_u64) {
+XXH_xorshift_64 :: #force_inline proc(v: xxh_u64, #any_int shift: uint) -> (res: xxh_u64) {
 	return v ~ (v >> shift)
 }