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

View File

@@ -699,7 +699,7 @@ pub fn main() anyerror!void {
defer parsed.deinit();
const root_map = &parsed.value.object;
var all_objects = std.ArrayList(*json.ObjectMap).init(allocator);
var all_objects = std.array_list.Managed(*json.ObjectMap).init(allocator);
{
var it = root_map.iterator();
it_map: while (it.next()) |kv| {