diff options
| author | gingerBill <bill@gingerbill.org> | 2020-09-10 15:00:19 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-09-10 15:00:19 +0100 |
| commit | c1149dbdeea1803267acd50c97a0070304b1b0c3 (patch) | |
| tree | 54576c90361640b44dd6bcb643cf71f226aee478 /src/parser.cpp | |
| parent | 7e625f6ee71e48a01137ac3e918b747b29cf681e (diff) | |
Update math and math/linalg; add "pure_none" calling convention
Diffstat (limited to 'src/parser.cpp')
| -rw-r--r-- | src/parser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.cpp b/src/parser.cpp index 702ef6605..3e6375321 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -2991,6 +2991,7 @@ ProcCallingConvention string_to_calling_convention(String s) { if (s == "odin") return ProcCC_Odin; if (s == "contextless") return ProcCC_Contextless; if (s == "pure") return ProcCC_Pure; + if (s == "pure_none") return ProcCC_PureNone; if (s == "cdecl") return ProcCC_CDecl; if (s == "c") return ProcCC_CDecl; if (s == "stdcall") return ProcCC_StdCall; |