diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-11-27 09:14:39 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-11-27 09:14:39 +0000 |
| commit | 0d16ab27837a6c7309f8f213dd3939166b2b55bb (patch) | |
| tree | 67b17963307303b32bf23ca8e5cd42558450fc90 /core/math/big | |
| parent | c63fa3f6630f350b3b2e9744dec35e269c500ee3 (diff) | |
Add alias `Okay = None`
Diffstat (limited to 'core/math/big')
| -rw-r--r-- | core/math/big/common.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/math/big/common.odin b/core/math/big/common.odin index cebe25119..f6485f3fb 100644 --- a/core/math/big/common.odin +++ b/core/math/big/common.odin @@ -160,6 +160,8 @@ Error :: enum byte { Cannot_Write_File = 52, Unimplemented = 127, + + Okay = None, } #assert(intrinsics.type_is_superset_of(Error, runtime.Allocator_Error)) |