authorgravatar for holtowd@proton.meAshley (holtowd) <holtowd@proton.me> 2026-07-18 21:32:58+03:00
committergravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2026-07-22 20:37:12+02:00
log9a9d8adda017780956de9015db1858f48bc8f509
tree0bd7d46152cf747ee95c3fde265192ec742131a3
parent5da11070e9851d15b7c6200006ae525a22ef8c18

Remove pub modifier from `const Self = @This()` expressions


2 files changed, 2 insertions(+), 2 deletions(-)

lib/std/meta/trailer_flags.zig+1-1
......@@ -39,7 +39,7 @@ pub fn TrailerFlags(comptime Fields: type) type {
3939 break :blk @Struct(.auto, null, &field_names, &field_types, &field_attrs);
4040 };
4141
42 pub const Self = @This();
42 const Self = @This();
4343
4444 pub fn has(self: Self, comptime field: FieldEnum) bool {
4545 const field_index = @backingInt(field);
lib/std/process/Args.zig+1-1
......@@ -752,7 +752,7 @@ pub fn IteratorGeneral(comptime options: IteratorGeneralOptions) type {
752752 start: usize = 0,
753753 end: usize = 0,
754754
755 pub const Self = @This();
755 const Self = @This();
756756
757757 pub const InitError = error{OutOfMemory};
758758