diff options
| author | gingerBill <bill@gingerbill.org> | 2024-02-01 13:01:38 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-02-01 13:01:38 +0000 |
| commit | 539cec7496c128a0f8bb10794a1d3d0d043705f0 (patch) | |
| tree | dbd9cd051b7fec0d0bb75456e6ad9fe035ebca02 /core/fmt | |
| parent | 000709b594284ff05681264d6cf53fcc4d771fa3 (diff) | |
Move Tracking_Allocator to its own file.dev-2024-02
Diffstat (limited to 'core/fmt')
| -rw-r--r-- | core/fmt/fmt.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fmt/fmt.odin b/core/fmt/fmt.odin index a3e5d943c..a0d6d66d1 100644 --- a/core/fmt/fmt.odin +++ b/core/fmt/fmt.odin @@ -1,15 +1,15 @@ package fmt +import "base:intrinsics" +import "base:runtime" import "core:math/bits" import "core:mem" import "core:io" import "core:reflect" -import "base:runtime" import "core:strconv" import "core:strings" import "core:time" import "core:unicode/utf8" -import "base:intrinsics" // Internal data structure that stores the required information for formatted printing Info :: struct { |