diff options
Diffstat (limited to 'core')
| -rw-r--r-- | core/strconv/strconv.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/strconv/strconv.odin b/core/strconv/strconv.odin index a6aa600d5..d4bf5464c 100644 --- a/core/strconv/strconv.odin +++ b/core/strconv/strconv.odin @@ -104,7 +104,7 @@ parse_u64 :: proc(str: string) -> u64 { parse_int :: proc(s: string) -> int { return int(parse_i64(s)); } -parse_uint :: proc(s: string, base: int) -> uint { +parse_uint :: proc(s: string) -> uint { return uint(parse_u64(s)); } |