aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-04-07 15:02:36 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-04-07 15:02:36 +0200
commit2b26c0b39ee851509eaa29eb074fcfd0df242201 (patch)
treea054eddbf0fffc456c5b73f82c8bb790d5dbd333
parenta5e513567bd87fbae768ebe6e54d6e6c92260dfc (diff)
Remove now unused field.
-rw-r--r--core/text/regex/regex.odin1
1 files changed, 0 insertions, 1 deletions
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,