From 2b26c0b39ee851509eaa29eb074fcfd0df242201 Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Mon, 7 Apr 2025 15:02:36 +0200 Subject: [PATCH] Remove now unused field. --- core/text/regex/regex.odin | 1 - 1 file changed, 1 deletion(-) diff --git a/core/text/regex/regex.odin b/core/text/regex/regex.odin index 7f082caaf..1e59b1800 100644 --- a/core/text/regex/regex.odin +++ b/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,