aboutsummaryrefslogtreecommitdiff
path: root/core/math/big/common.odin
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2021-07-30 16:45:41 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2021-08-11 20:59:52 +0200
commit2179cc2bc79895d7966163cff3d86d9ed26628f3 (patch)
treef23559a959c64e42b91e6b2084a6a35ba8c1b9c8 /core/math/big/common.odin
parent961adfedd9adee86be6bb5984145bdfe8d6f8fe2 (diff)
big: Improved test driver.
Diffstat (limited to 'core/math/big/common.odin')
-rw-r--r--core/math/big/common.odin2
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,