Browse Source

Merge pull request #493 from ThisDrunkDane/master

Fix #399 by removing unused parameter
gingerBill 5 years ago
parent
commit
be2dfd42fd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/strconv/strconv.odin

+ 1 - 1
core/strconv/strconv.odin

@@ -104,7 +104,7 @@ parse_u64 :: proc(str: string) -> u64 {
 parse_int :: proc(s: string) -> int {
 parse_int :: proc(s: string) -> int {
 	return int(parse_i64(s));
 	return int(parse_i64(s));
 }
 }
-parse_uint :: proc(s: string, base: int) -> uint {
+parse_uint :: proc(s: string) -> uint {
 	return uint(parse_u64(s));
 	return uint(parse_u64(s));
 }
 }