2
0
Эх сурвалжийг харах

Merge pull request #4848 from dozn/master

[core:flags] Add Missing `allocator` and `loc` Params on Call to `parse()`
Laytan 6 сар өмнө
parent
commit
f0b1357132
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  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)