From 851118faf47c5723a3a6b55c08fe18add2c0bce8 Mon Sep 17 00:00:00 2001 From: Mikkel Hjortshoej Date: Sun, 8 Dec 2019 02:09:03 +0100 Subject: [PATCH] Fix #399 by removing unused parameter --- core/strconv/strconv.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); }