update deprecated ArrayListUnmanaged usage (#25958)

This commit is contained in:
Benjamin Jurk
2025-11-20 23:46:23 +01:00
committed by GitHub
parent db622f14c4
commit 4b5351bc0d
112 changed files with 629 additions and 630 deletions
+2 -2
View File
@@ -381,8 +381,8 @@ const BinaryElfSegment = struct {
};
const BinaryElfOutput = struct {
segments: std.ArrayListUnmanaged(*BinaryElfSegment),
sections: std.ArrayListUnmanaged(*BinaryElfSection),
segments: std.ArrayList(*BinaryElfSegment),
sections: std.ArrayList(*BinaryElfSection),
allocator: Allocator,
shstrtab: ?[]const u8,