| ... | ... | @@ -947,13 +947,14 @@ pub const BlameIterator = struct { |
| 947 | 947 | pub const Repository = struct { |
| 948 | 948 | gitdir: nfs.Dir, |
| 949 | 949 | gpa: std.mem.Allocator, |
| 950 | | raw_object_contents: std.StringArrayHashMapUnmanaged([]const u8) = .empty, |
| 950 | raw_object_contents: std.StringArrayHashMapUnmanaged([]const u8), |
| 951 | 951 | commits: std.StringArrayHashMapUnmanaged(Commit), |
| 952 | 952 | |
| 953 | 953 | pub fn init(gitdir: nfs.Dir, gpa: std.mem.Allocator) Repository { |
| 954 | 954 | return .{ |
| 955 | 955 | .gitdir = gitdir, |
| 956 | 956 | .gpa = gpa, |
| 957 | .raw_object_contents = .empty, |
| 957 | 958 | .commits = .empty, |
| 958 | 959 | }; |
| 959 | 960 | } |