diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2019-12-08 14:35:18 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-08 14:35:18 +0000 |
| commit | be2dfd42fdc8c7f4bdddbac8a5778dacd19df7f1 (patch) | |
| tree | 3e3568d6c6d7d214ff69b96fa860d24df9d0292b | |
| parent | 53cd7a3d0cb295173936a431fba667e3347b6f8b (diff) | |
| parent | 851118faf47c5723a3a6b55c08fe18add2c0bce8 (diff) | |
Merge pull request #493 from ThisDrunkDane/master
Fix #399 by removing unused parameter
| -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)); } |