Skip to content

Commit 7001cf0

Browse files
committed
update to Zig 0.16.0-dev.313+be571f32c
1 parent bc3af96 commit 7001cf0

File tree

5 files changed

+452
-8
lines changed

5 files changed

+452
-8
lines changed

build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const builtin = @import("builtin");
66
const zls_version: std.SemanticVersion = .{ .major = 0, .minor = 16, .patch = 0, .pre = "dev" };
77

88
/// Specify the minimum Zig version that is required to compile and test ZLS:
9-
/// std.Io: delete GenericReader, AnyReader, FixedBufferStream; and related API breakage
9+
/// std.Build.Step.Run: Enable passing (generated) file content as args
1010
///
1111
/// If you do not use Nix, a ZLS maintainer can take care of this.
1212
/// Whenever this version is increased, run the following command:
@@ -15,7 +15,7 @@ const zls_version: std.SemanticVersion = .{ .major = 0, .minor = 16, .patch = 0,
1515
/// ```
1616
///
1717
/// Also update the `minimum_zig_version` in `build.zig.zon`.
18-
const minimum_build_zig_version = "0.16.0-dev.156+b7104231a";
18+
const minimum_build_zig_version = "0.16.0-dev.313+be571f32c";
1919

2020
/// Specify the minimum Zig version that is usable with ZLS:
2121
/// Release 0.15.1

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.version = "0.16.0-dev",
55
// Must be kept in line with the `minimum_build_zig_version` in `build.zig`.
66
// Should be a Zig version that is downloadable from https://ziglang.org/download/ or a mirror.
7-
.minimum_zig_version = "0.16.0-dev.168+d51d18c98",
7+
.minimum_zig_version = "0.16.0-dev.368+2a97e0af6",
88
// If you do not use Nix, a ZLS maintainer can take care of this.
99
// Whenever the dependencies are updated, run the following command:
1010
// ```bash

src/analyser/InternPool.zig

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ lock: RwLock,
99

1010
limbs: std.ArrayList(usize),
1111

12-
decls: std.SegmentedList(InternPool.Decl, 0),
13-
structs: std.SegmentedList(InternPool.Struct, 0),
14-
enums: std.SegmentedList(InternPool.Enum, 0),
15-
unions: std.SegmentedList(InternPool.Union, 0),
12+
decls: SegmentedList(InternPool.Decl, 0),
13+
structs: SegmentedList(InternPool.Struct, 0),
14+
enums: SegmentedList(InternPool.Enum, 0),
15+
unions: SegmentedList(InternPool.Union, 0),
1616

1717
const InternPool = @This();
1818
const std = @import("std");
@@ -25,6 +25,7 @@ const expectFmt = std.testing.expectFmt;
2525
pub const StringPool = @import("string_pool.zig").StringPool(.{});
2626
pub const String = StringPool.String;
2727
const ErrorMsg = @import("error_msg.zig").ErrorMsg;
28+
const SegmentedList = @import("segmented_list.zig").SegmentedList;
2829

2930
pub const RwLock = if (builtin.single_threaded)
3031
std.Thread.RwLock.SingleThreadedRwLock

0 commit comments

Comments
 (0)