mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-07 16:18:52 +00:00
Add contextless to internal parse_hex call
This commit is contained in:
@@ -765,7 +765,7 @@ parse_f64_prefix :: proc(str: string) -> (value: f64, nr: int, ok: bool) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
parse_hex :: proc(s: string, mantissa: u64, exp: int, neg, trunc: bool) -> (f64, bool) {
|
parse_hex :: proc "contextless" (s: string, mantissa: u64, exp: int, neg, trunc: bool) -> (f64, bool) {
|
||||||
info := &_f64_info
|
info := &_f64_info
|
||||||
|
|
||||||
mantissa, exp := mantissa, exp
|
mantissa, exp := mantissa, exp
|
||||||
|
|||||||
Reference in New Issue
Block a user