refactor: Allocations now use the temp_allocator more frequently.

This commit is contained in:
2026-06-19 07:50:05 -04:00
parent 84764d03a6
commit a03d388a0c
4 changed files with 29 additions and 22 deletions

View File

@@ -75,6 +75,7 @@ parse_args :: proc(args: []string, out: io.Stream, err: io.Stream) -> (cmd: Comm
cmd.flags = make(map[string]string)
cmd.bool_set = make(map[string]bool)
// TODO: Optimize loop?
i := 2
for i < len(args) {
arg := args[i]