From ea3095870149596dace76a64dc9701aefc892e64 Mon Sep 17 00:00:00 2001 From: "Lucas F." Date: Thu, 22 Jan 2026 09:38:38 -0300 Subject: [PATCH] update: cleanup --- src/context.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/context.zig b/src/context.zig index 267e2ca..6cf1744 100644 --- a/src/context.zig +++ b/src/context.zig @@ -44,9 +44,7 @@ pub const Context = struct { if (@typeInfo(T) == .pointer) { if (@typeInfo(T).pointer.size == .slice) { - std.debug.print("slice: {any}\n", .{@typeInfo(T).pointer.child}); if (@typeInfo(@typeInfo(T).pointer.child) == .@"struct") { - std.debug.print("struct: {s}\n", .{@typeName(@typeInfo(T).pointer.child)}); var list = try self.allocator().alloc(Value, value.len); for (value, 0..) |item, i| { list[i] = try self.toValue(item);