浏览代码

Remove now unused field.

Jeroen van Rijn 5 月之前
父节点
当前提交
2b26c0b39e
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      core/text/regex/regex.odin

+ 0 - 1
core/text/regex/regex.odin

@@ -69,7 +69,6 @@ Regular_Expression :: struct {
 An iterator to repeatedly match a pattern against a string, to be used with `*_iterator` procedures.
 */
 Match_Iterator :: struct {
-	haystack: string,
 	regex:    Regular_Expression,
 	capture:  Capture,
 	vm:       virtual_machine.Machine,