From 9d802c755c22f8612b6933da99998e7ddae14886 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 3 May 2026 15:25:50 +0900 Subject: update zig to 0.16 --- src/jq/saveable_stack.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/jq/saveable_stack.zig') diff --git a/src/jq/saveable_stack.zig b/src/jq/saveable_stack.zig index f3a0b40..6bf2c77 100644 --- a/src/jq/saveable_stack.zig +++ b/src/jq/saveable_stack.zig @@ -67,9 +67,9 @@ pub fn SaveableStack(comptime T: type) type { pub fn init(allocator: std.mem.Allocator) !Self { var stack = Self{ - .segments = .{}, + .segments = .empty, .active_segment_index = 0, - .savepoints = .{}, + .savepoints = .empty, .allocator = allocator, }; -- cgit v1.3.1