Browse Source

Pass in allocator and loc to core:flags.parse()

dozn 6 months ago
parent
commit
b99aee65bf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/flags/util.odin

+ 1 - 1
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)