diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-07-30 16:45:41 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-08-11 20:59:52 +0200 |
| commit | 2179cc2bc79895d7966163cff3d86d9ed26628f3 (patch) | |
| tree | f23559a959c64e42b91e6b2084a6a35ba8c1b9c8 /core/math/big/common.odin | |
| parent | 961adfedd9adee86be6bb5984145bdfe8d6f8fe2 (diff) | |
big: Improved test driver.
Diffstat (limited to 'core/math/big/common.odin')
| -rw-r--r-- | core/math/big/common.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/big/common.odin b/core/math/big/common.odin index 59e76a9aa..f030f111a 100644 --- a/core/math/big/common.odin +++ b/core/math/big/common.odin @@ -49,7 +49,7 @@ Int :: struct { /* Errors are a strict superset of runtime.Allocation_Error. */ -Error :: enum byte { +Error :: enum int { None = 0, Out_Of_Memory = 1, Invalid_Pointer = 2, |