aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/jq/saveable_stack.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/jq/saveable_stack.zig')
-rw-r--r--src/jq/saveable_stack.zig4
1 files changed, 2 insertions, 2 deletions
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,
};