std.ArrayList: make unmanaged the default

This commit is contained in:
Andrew Kelley
2025-07-31 21:54:07 -07:00
parent d625158354
commit 749f10af49
161 changed files with 861 additions and 870 deletions
+1 -1
View File
@@ -1826,7 +1826,7 @@ test "assign to slice.len of global variable" {
const S = struct {
const allocator = std.testing.allocator;
var list = std.ArrayList(u32).init(allocator);
var list = std.array_list.Managed(u32).init(allocator);
};
S.list.items.len = 0;