mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-02 11:12:31 +00:00
Merge pull request #493 from ThisDrunkDane/master
Fix #399 by removing unused parameter
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user