diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-05-15 20:09:54 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-06-10 20:47:53 -0700 |
| commit | 17882162b3be5542b4e289e5ddc6535a4bb4c6b1 (patch) | |
| tree | 678a9762bd5894e487ff808562eba690918c23ba /lib/std/builtin.zig | |
| parent | 6a9a918fbe4adc23dd7d7573c6f1e499f4be074e (diff) | |
| download | zig-17882162b3be5542b4e289e5ddc6535a4bb4c6b1.tar.gz zig-17882162b3be5542b4e289e5ddc6535a4bb4c6b1.zip | |
stage2: move function types to InternPool
Diffstat (limited to 'lib/std/builtin.zig')
| -rw-r--r-- | lib/std/builtin.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig index 429654bd4a..3e8970a354 100644 --- a/lib/std/builtin.zig +++ b/lib/std/builtin.zig @@ -143,7 +143,7 @@ pub const Mode = OptimizeMode; /// This data structure is used by the Zig language code generation and /// therefore must be kept in sync with the compiler implementation. -pub const CallingConvention = enum { +pub const CallingConvention = enum(u8) { /// This is the default Zig calling convention used when not using `export` on `fn` /// and no other calling convention is specified. Unspecified, |
