| author | |
| committer | |
| log | 35a2971073cbbe0c2a4bcd49ac6a48a5f043143b |
| tree | 483e64d87e703e2cd85f73b999b5925c926ec9f3 |
| parent | 2f797a159a997d3ed19b6587a47240e366efc321 |
1 files changed, 0 insertions(+), 2 deletions(-)
src/util/modfile.zig-2| ... | ... | @@ -14,7 +14,6 @@ const mb = kb * 1024; |
| 14 | 14 | pub const ModFile = struct { |
| 15 | 15 | const Self = @This(); |
| 16 | 16 | |
| 17 | alloc: *std.mem.Allocator, | |
| 18 | 17 | id: string, |
| 19 | 18 | name: string, |
| 20 | 19 | main: string, |
| ... | ... | @@ -53,7 +52,6 @@ pub const ModFile = struct { |
| 53 | 52 | } |
| 54 | 53 | |
| 55 | 54 | return Self{ |
| 56 | .alloc = alloc, | |
| 57 | 55 | .id = if (id.len == 0) try u.random_string(48) else id, |
| 58 | 56 | .name = name, |
| 59 | 57 | .main = main, |