refactor: replace ArrayListUnmanaged with ArrayList per Zig 0.15 standards
- Renamed std.ArrayListUnmanaged to std.ArrayList across all source files - Updated CLAUDE.md with Zig version standards rule - Removed debug print from mixin test - No API changes (allocator still passed to methods)
This commit is contained in:
@@ -4,7 +4,7 @@ const helpers = @import("helpers.zig");
|
||||
pub const Data = struct {};
|
||||
|
||||
pub fn render(allocator: std.mem.Allocator, _: Data) ![]const u8 {
|
||||
var buf: std.ArrayListUnmanaged(u8) = .{};
|
||||
var buf: std.ArrayList(u8) = .{};
|
||||
defer buf.deinit(allocator);
|
||||
|
||||
try buf.appendSlice(allocator, "<p>Active</p><p>Inactive</p>");
|
||||
|
||||
Reference in New Issue
Block a user