aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/text/regex/regex.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/text/regex/regex.odin b/core/text/regex/regex.odin
index 0bb0b7824..9da7e9246 100644
--- a/core/text/regex/regex.odin
+++ b/core/text/regex/regex.odin
@@ -30,8 +30,8 @@ Capture :: struct {
}
Regular_Expression :: struct {
- flags: Flags,
- class_data: []virtual_machine.Rune_Class_Data,
+ flags: Flags `fmt:"-"`,
+ class_data: []virtual_machine.Rune_Class_Data `fmt:"-"`,
program: []virtual_machine.Opcode `fmt:"-"`,
}