diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-08-08 23:41:51 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-08-11 20:59:53 +0200 |
| commit | 40b7b9ecdf3aa3c749b1bb1b04ae0637e49e16c7 (patch) | |
| tree | c9246f6f326bff649f32bd8ec3ad5269243860ea /core/math/big/common.odin | |
| parent | 53bf66ce1ec8708284d2dcf726240fcbbcd90d05 (diff) | |
big: Refactor exponents and such.
Diffstat (limited to 'core/math/big/common.odin')
| -rw-r--r-- | core/math/big/common.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/math/big/common.odin b/core/math/big/common.odin index 837fc5789..562aa46fa 100644 --- a/core/math/big/common.odin +++ b/core/math/big/common.odin @@ -109,6 +109,7 @@ Flags :: bit_set[Flag; u8]; Errors are a strict superset of runtime.Allocation_Error. */ Error :: enum int { + Okay = 0, Out_Of_Memory = 1, Invalid_Pointer = 2, Invalid_Argument = 3, |