Remove "pure" and "pure_none" calling conventions

This commit is contained in:
gingerBill
2021-02-23 13:10:23 +00:00
parent a652c24ac3
commit 28ed310f31
15 changed files with 18 additions and 111 deletions
+4 -6
View File
@@ -25,13 +25,11 @@ Calling_Convention :: enum u8 {
Invalid = 0,
Odin = 1,
Contextless = 2,
Pure = 3,
CDecl = 4,
Std_Call = 5,
Fast_Call = 6,
CDecl = 3,
Std_Call = 4,
Fast_Call = 5,
None = 7,
Pure_None = 8,
None = 6,
}
Type_Info_Enum_Value :: distinct i64;