From 09a0dad1159385f22a624258ba43069d3e20c368 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 16 Mar 2023 12:43:10 +0000 Subject: [PATCH] Add `contextless` to internal `parse_hex` call --- core/strconv/strconv.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/strconv/strconv.odin b/core/strconv/strconv.odin index b96dca19a..e11ce471d 100644 --- a/core/strconv/strconv.odin +++ b/core/strconv/strconv.odin @@ -765,7 +765,7 @@ parse_f64_prefix :: proc(str: string) -> (value: f64, nr: int, ok: bool) { 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 mantissa, exp := mantissa, exp