From 70820c2c406f81e192923a7488cd76ec978cbeb2 Mon Sep 17 00:00:00 2001 From: Feoramund <161657516+Feoramund@users.noreply.github.com> Date: Sun, 9 Jun 2024 21:37:56 -0400 Subject: [PATCH] Add missing `string_to_int` alias in `core:math/big` --- core/math/big/radix.odin | 1 + 1 file changed, 1 insertion(+) 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.