소스 검색

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

gingerBill 5 년 전
부모
커밋
5aa46d31b2
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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,