this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

cell: use equal operator for packed structs

This was introduced in zig 0.14

+1 -3
+1 -3
src/Cell.zig
··· 93 93 .invisible = b.invisible, 94 94 .strikethrough = b.strikethrough, 95 95 }; 96 - const a_cast: u7 = @bitCast(a_sgr); 97 - const b_cast: u7 = @bitCast(b_sgr); 98 - return a_cast == b_cast and 96 + return a_sgr == b_sgr and 99 97 Color.eql(a.fg, b.fg) and 100 98 Color.eql(a.bg, b.bg) and 101 99 Color.eql(a.ul, b.ul) and