Use semicolons as field delimiters in records

This commit is contained in:
Ginger Bill
2017-07-10 13:49:50 +01:00
parent 81336b58cb
commit 66e4aaffc5
15 changed files with 460 additions and 343 deletions
+4 -4
View File
@@ -7,13 +7,13 @@ __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},
all: u128;
using _: struct {lo, hi: u64};
};
} else {
TWords :: raw_union {
all: u128,
using _: struct {hi, lo: u64},
all: u128;
using _: struct {hi, lo: u64};
};
}