Code will compile as 32 bit but will causes errors in the linker on Windows

This commit is contained in:
Ginger Bill
2017-06-19 15:55:09 +01:00
parent 178236d1ff
commit 5427d14416
11 changed files with 674 additions and 622 deletions
+5 -4
View File
@@ -32,10 +32,11 @@ type (
}
// NOTE(bill): This must match the compiler's
CallingConvention enum {
Odin = 0,
C = 1,
Std = 2,
Fast = 3,
Invalid = 0,
Odin = 1,
C = 2,
Std = 3,
Fast = 4,
}
TypeInfoRecord struct #ordered {