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/types.cpp | |
| parent | 7e625f6ee71e48a01137ac3e918b747b29cf681e (diff) | |
Update math and math/linalg; add "pure_none" calling convention
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/types.cpp b/src/types.cpp index 453540252..20a6bd901 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -3556,6 +3556,9 @@ gbString write_type_to_string(gbString str, Type *type) { case ProcCC_FastCall: str = gb_string_appendc(str, " \"fastcall\" "); break; + case ProcCC_PureNone: + str = gb_string_appendc(str, " \"pure_none\" "); + break; case ProcCC_None: str = gb_string_appendc(str, " \"none\" "); break; |