From 76304a36afb6d2cc77902a0e60906382b53d7baa Mon Sep 17 00:00:00 2001 From: lithdew Date: Fri, 30 Apr 2021 21:10:36 +0900 Subject: [PATCH] std/builtin: add missing comma to CallingConvention --- lib/std/builtin.zig | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig index c5fa77bb7c..53c27f0bf5 100644 --- a/lib/std/builtin.zig +++ b/lib/std/builtin.zig @@ -150,7 +150,23 @@ pub const Mode = enum { /// 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 { Unspecified, C, Naked, Async, Inline, Interrupt, Signal, Stdcall, Fastcall, Vectorcall, Thiscall, APCS, AAPCS, AAPCSVFP, SysV }; +pub const CallingConvention = enum { + Unspecified, + C, + Naked, + Async, + Inline, + Interrupt, + Signal, + Stdcall, + Fastcall, + Vectorcall, + Thiscall, + APCS, + AAPCS, + AAPCSVFP, + SysV, +}; /// This data structure is used by the Zig language code generation and /// therefore must be kept in sync with the compiler implementation.