mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-03-22 12:44:43 +00:00
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:
@@ -156,7 +156,7 @@ const Writer = struct {
|
||||
case_pass_count: usize = 0,
|
||||
case_fail_count: usize = 0,
|
||||
writer: std.fs.File.Writer,
|
||||
cases: std.ArrayListUnmanaged(Case) = .{},
|
||||
cases: std.ArrayList(Case) = .{},
|
||||
|
||||
const Format = enum { json, text, summary, quiet };
|
||||
|
||||
@@ -335,7 +335,7 @@ fn parseArgs(arena: Allocator) !Command {
|
||||
const exec_name = args.next().?;
|
||||
|
||||
var format = Writer.Format.text;
|
||||
var filters: std.ArrayListUnmanaged([]const u8) = .{};
|
||||
var filters: std.ArrayList([]const u8) = .{};
|
||||
|
||||
while (args.next()) |arg| {
|
||||
if (std.mem.eql(u8, "-h", arg) or std.mem.eql(u8, "--help", arg)) {
|
||||
|
||||
Reference in New Issue
Block a user