| author | |
| committer | |
| log | 9a9d8adda017780956de9015db1858f48bc8f509 |
| tree | 0bd7d46152cf747ee95c3fde265192ec742131a3 |
| parent | 5da11070e9851d15b7c6200006ae525a22ef8c18 |
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 { | ... | @@ -39,7 +39,7 @@ pub fn TrailerFlags(comptime Fields: type) type { |
| 39 | break :blk @Struct(.auto, null, &field_names, &field_types, &field_attrs); | 39 | break :blk @Struct(.auto, null, &field_names, &field_types, &field_attrs); |
| 40 | }; | 40 | }; |
| 41 | 41 | ||
| 42 | pub const Self = @This(); | 42 | const Self = @This(); |
| 43 | 43 | ||
| 44 | pub fn has(self: Self, comptime field: FieldEnum) bool { | 44 | pub fn has(self: Self, comptime field: FieldEnum) bool { |
| 45 | const field_index = @backingInt(field); | 45 | const field_index = @backingInt(field); |
lib/std/process/Args.zig+1-1| ... | @@ -752,7 +752,7 @@ pub fn IteratorGeneral(comptime options: IteratorGeneralOptions) type { | ... | @@ -752,7 +752,7 @@ pub fn IteratorGeneral(comptime options: IteratorGeneralOptions) type { |
| 752 | start: usize = 0, | 752 | start: usize = 0, |
| 753 | end: usize = 0, | 753 | end: usize = 0, |
| 754 | 754 | ||
| 755 | pub const Self = @This(); | 755 | const Self = @This(); |
| 756 | 756 | ||
| 757 | pub const InitError = error{OutOfMemory}; | 757 | pub const InitError = error{OutOfMemory}; |
| 758 | 758 |