From 7267004a55e0fc8bed21ad6220a1475ad9d276d3 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 22 Dec 2019 10:28:48 +0000 Subject: [PATCH] Remove `import "core:runtime"` in integers.odin to make -vet happy --- core/strconv/integers.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/strconv/integers.odin b/core/strconv/integers.odin index 12fd0029c..3a12f5472 100644 --- a/core/strconv/integers.odin +++ b/core/strconv/integers.odin @@ -113,7 +113,7 @@ is_integer_negative_128 :: proc(x: u128, is_signed: bool, bit_size: int) -> (u: return; } -import "core:runtime" +// import "core:runtime" append_bits_128 :: proc(buf: []byte, x: u128, base: int, is_signed: bool, bit_size: int, digits: string, flags: Int_Flags) -> string { if base < 2 || base > MAX_BASE {