aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2019-12-08 14:35:18 +0000
committerGitHub <noreply@github.com>2019-12-08 14:35:18 +0000
commitbe2dfd42fdc8c7f4bdddbac8a5778dacd19df7f1 (patch)
tree3e3568d6c6d7d214ff69b96fa860d24df9d0292b /core
parent53cd7a3d0cb295173936a431fba667e3347b6f8b (diff)
parent851118faf47c5723a3a6b55c08fe18add2c0bce8 (diff)
Merge pull request #493 from ThisDrunkDane/master
Fix #399 by removing unused parameter
Diffstat (limited to 'core')
-rw-r--r--core/strconv/strconv.odin2
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));
}