From ef999f660b412d9eada0fffa644d3139186031a1 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 6 Mar 2023 19:46:50 +0000 Subject: [PATCH] Remove debug code --- core/strconv/strconv.odin | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/strconv/strconv.odin b/core/strconv/strconv.odin index dc3d7dbf1..b96dca19a 100644 --- a/core/strconv/strconv.odin +++ b/core/strconv/strconv.odin @@ -2,7 +2,6 @@ package strconv import "core:unicode/utf8" import "decimal" -import "core:runtime" parse_bool :: proc(s: string, n: ^int = nil) -> (result: bool = false, ok: bool) { switch s { @@ -837,7 +836,6 @@ parse_f64_prefix :: proc(str: string) -> (value: f64, nr: int, ok: bool) { mantissa, exp, neg, trunc, hex, nr = parse_components(str) or_return if hex { - runtime.println_any(mantissa, exp, neg, trunc, hex, nr) value, ok = parse_hex(str, mantissa, exp, neg, trunc) return }