mirror of
https://github.com/ziglang/zig.git
synced 2024-11-14 16:13:24 +00:00
generate_c_size_and_align_checks: Remove extraneous newline
Groups the assertions together properly.
This commit is contained in:
parent
61fbdebd61
commit
6976a5da19
@ -49,7 +49,7 @@ pub fn main() !void {
|
||||
c_name(c_type),
|
||||
target.c_type_byte_size(c_type),
|
||||
});
|
||||
try stdout.print("_Static_assert(_Alignof({0s}) == {1d}, \"_Alignof({0s}) == {1d}\");\n\n", .{
|
||||
try stdout.print("_Static_assert(_Alignof({0s}) == {1d}, \"_Alignof({0s}) == {1d}\");\n", .{
|
||||
c_name(c_type),
|
||||
target.c_type_alignment(c_type),
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user