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 std = @import("std");
|
||||
|
||||
/// Append HTML-escaped string to buffer
|
||||
pub fn appendEscaped(buf: *std.ArrayListUnmanaged(u8), allocator: std.mem.Allocator, str: []const u8) !void {
|
||||
pub fn appendEscaped(buf: *std.ArrayList(u8), allocator: std.mem.Allocator, str: []const u8) !void {
|
||||
for (str) |c| {
|
||||
switch (c) {
|
||||
'&' => try buf.appendSlice(allocator, "&"),
|
||||
|
||||
Reference in New Issue
Block a user