Rename all ArrayListUnmanaged -> ArrayList

ArrayListAlignedUnmanaged has been deprecated for a while, and I occasionally
replace them, but doing one complete pass gets it done once and for all.
This commit is contained in:
Karl Seguin
2026-02-05 11:49:15 +08:00
parent 7746d9968d
commit 2eab4b84c9
20 changed files with 39 additions and 40 deletions

View File

@@ -724,7 +724,7 @@ fn parseCommonArg(
return true;
};
var arr: std.ArrayListUnmanaged(log.Scope) = .empty;
var arr: std.ArrayList(log.Scope) = .empty;
var it = std.mem.splitScalar(u8, str, ',');
while (it.next()) |part| {