From 55e513fbd7fe0ce5904e75d27cbe17d15b61c06b Mon Sep 17 00:00:00 2001 From: bennyyip Date: Tue, 23 Jun 2026 22:19:26 +0800 Subject: [PATCH] align struct fields --- core/text/regex/virtual_machine/virtual_machine.odin | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/text/regex/virtual_machine/virtual_machine.odin b/core/text/regex/virtual_machine/virtual_machine.odin index 5b503290a..3751e0974 100644 --- a/core/text/regex/virtual_machine/virtual_machine.odin +++ b/core/text/regex/virtual_machine/virtual_machine.odin @@ -59,23 +59,23 @@ Split :: struct #packed { right: i16, } Wait_For_Byte :: struct #packed { - opcode: Opcode, + opcode: Opcode, operand: Opcode, } Wait_For_Rune :: struct #packed { - opcode: Opcode, + opcode: Opcode, operand: rune, } Wait_For_Rune_Class :: struct #packed { - opcode: Opcode, + opcode: Opcode, operand: Opcode, } Wait_For_Rune_Class_Negated :: struct #packed { - opcode: Opcode, + opcode: Opcode, operand: Opcode, } Save :: struct #packed { - opcode: Opcode, + opcode: Opcode, operand: Opcode, }