diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-07-07 11:38:15 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-07-07 13:39:16 -0700 |
| commit | aa52bb83271edc626cd931cf9e8dfbcfc90d4cf2 (patch) | |
| tree | 4ddab249d8aabafb74221d2d96812b554eedfd39 /lib/std/builtin.zig | |
| parent | a59c35cbf86e0266d5074ce219feef8436e45268 (diff) | |
| download | zig-aa52bb83271edc626cd931cf9e8dfbcfc90d4cf2.tar.gz zig-aa52bb83271edc626cd931cf9e8dfbcfc90d4cf2.zip | |
zig fmt
Diffstat (limited to 'lib/std/builtin.zig')
| -rw-r--r-- | lib/std/builtin.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig index 527fc141c6..548b308cad 100644 --- a/lib/std/builtin.zig +++ b/lib/std/builtin.zig @@ -246,7 +246,7 @@ pub const CallingConvention = union(enum(u8)) { /// The calling convention of a function that can be called with `async` syntax. An `async` call /// of a runtime-known function must target a function with this calling convention. /// Comptime-known functions with other calling conventions may be coerced to this one. - @"async", + async, /// Functions with this calling convention have no prologue or epilogue, making the function /// uncallable in regular Zig code. This can be useful when integrating with assembly. @@ -849,7 +849,7 @@ pub const LinkMode = enum { pub const UnwindTables = enum { none, sync, - @"async", + async, }; /// This data structure is used by the Zig language code generation and |
