diff options
| author | dozn <andymrsimmons@gmail.com> | 2025-02-15 08:47:08 -0800 |
|---|---|---|
| committer | dozn <andymrsimmons@gmail.com> | 2025-02-15 08:47:08 -0800 |
| commit | b99aee65bf4c4b0f47966c0998117fbfe651e4b2 (patch) | |
| tree | 614700107ab9a8d1e153555f2bb68c9bc60b4a29 | |
| parent | 2a5933513ca47d75c1f29efae2e9f948c3ae8103 (diff) | |
Pass in allocator and loc to core:flags.parse()
| -rw-r--r-- | core/flags/util.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/flags/util.odin b/core/flags/util.odin index f1bd60e75..c182289be 100644 --- a/core/flags/util.odin +++ b/core/flags/util.odin @@ -36,7 +36,7 @@ parse_or_exit :: proc( args = program_args[1:] } - error := parse(model, args, style) + error := parse(model, args, style, true, true, allocator, loc) if error != nil { stderr := os.stream_from_handle(os.stderr) |