diff options
Diffstat (limited to 'core/hash/crc32.odin')
| -rw-r--r-- | core/hash/crc32.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hash/crc32.odin b/core/hash/crc32.odin index fead4d74f..761444676 100644 --- a/core/hash/crc32.odin +++ b/core/hash/crc32.odin @@ -1,6 +1,6 @@ package hash -import "core:intrinsics" +import "base:intrinsics" @(optimization_mode="speed") crc32 :: proc(data: []byte, seed := u32(0)) -> u32 #no_bounds_check { |