mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Make record semicolon syntax more consistent
This commit is contained in:
@@ -8,12 +8,12 @@ __multi3 :: proc(a, b: u128) -> u128 #cc_c #link_name "__multi3" {
|
||||
when ODIN_ENDIAN == "bit" {
|
||||
TWords :: raw_union {
|
||||
all: u128;
|
||||
using _: struct {lo, hi: u64};
|
||||
using _: struct {lo, hi: u64;};
|
||||
};
|
||||
} else {
|
||||
TWords :: raw_union {
|
||||
all: u128;
|
||||
using _: struct {hi, lo: u64};
|
||||
using _: struct {hi, lo: u64;};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user