diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-09-15 20:05:44 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-09-15 20:06:07 +0200 |
| commit | 662d27b79650176d27cdc5589a0862a33dbcc313 (patch) | |
| tree | 617abf65fd96de7cae8db4883027f325a44c8212 /core/hash/xxhash/common.odin | |
| parent | de00c7c9a8e428d3510fb81ea09f4c3519509d18 (diff) | |
Finish xxHash implementation.
Diffstat (limited to 'core/hash/xxhash/common.odin')
| -rw-r--r-- | core/hash/xxhash/common.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hash/xxhash/common.odin b/core/hash/xxhash/common.odin index 434ebb905..908dfaa87 100644 --- a/core/hash/xxhash/common.odin +++ b/core/hash/xxhash/common.odin @@ -41,7 +41,7 @@ Alignment :: enum { } Error :: enum { - Okay = 0, + None = 0, Error, } |