Browse Source

Move `package decimal` to be a subpackage of `package strconv`

gingerBill 5 years ago
parent
commit
5aa46d31b2
2 changed files with 2 additions and 2 deletions
  1. 1 1
      core/strconv/decimal/decimal.odin
  2. 1 1
      core/strconv/generic_float.odin

+ 1 - 1
core/decimal/decimal.odin → 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

+ 1 - 1
core/strconv/generic_float.odin

@@ -1,6 +1,6 @@
 package strconv
 
-using import "core:decimal"
+using import "decimal"
 
 Int_Flag :: enum {
 	Prefix,