diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-09 21:37:56 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-09 21:42:31 -0400 |
| commit | 70820c2c406f81e192923a7488cd76ec978cbeb2 (patch) | |
| tree | 497ccc43a61d175c1fd91a1d81b352e03643b851 /core/math | |
| parent | 4ea593bde0bd6f69ea9982d627c13ad8f32ef7cf (diff) | |
Add missing `string_to_int` alias in `core:math/big`
Diffstat (limited to 'core/math')
| -rw-r--r-- | core/math/big/radix.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/math/big/radix.odin b/core/math/big/radix.odin index f4eed879f..a5100e478 100644 --- a/core/math/big/radix.odin +++ b/core/math/big/radix.odin @@ -315,6 +315,7 @@ int_atoi :: proc(res: ^Int, input: string, radix := i8(10), allocator := context atoi :: proc { int_atoi, } +string_to_int :: int_atoi /* We size for `string` by default. |