From 5aa46d31b2af6bd39ce441c7668726d6227d753a Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 26 Oct 2019 14:46:21 +0100 Subject: [PATCH] Move `package decimal` to be a subpackage of `package strconv` --- core/{ => strconv}/decimal/decimal.odin | 2 +- core/strconv/generic_float.odin | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename core/{ => strconv}/decimal/decimal.odin (99%) diff --git a/core/decimal/decimal.odin b/core/strconv/decimal/decimal.odin similarity index 99% rename from core/decimal/decimal.odin rename to core/strconv/decimal/decimal.odin index 97c586635..15853c5a7 100644 --- a/core/decimal/decimal.odin +++ b/core/strconv/decimal/decimal.odin @@ -1,6 +1,6 @@ // Multiple precision decimal numbers // NOTE: This is only for floating point printing and nothing else -package decimal +package strconv_decimal Decimal :: struct { digits: [384]byte, // big-endian digits diff --git a/core/strconv/generic_float.odin b/core/strconv/generic_float.odin index 59eaa20d5..24cbf3b15 100644 --- a/core/strconv/generic_float.odin +++ b/core/strconv/generic_float.odin @@ -1,6 +1,6 @@ package strconv -using import "core:decimal" +using import "decimal" Int_Flag :: enum { Prefix,