Skip to content

Commit fbcf6b0

Browse files
committed
update to zig version 0.16.0-dev.3133+5ec8e45f3
1 parent d0bb4a5 commit fbcf6b0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ pub fn build(b: *std.Build) void {
214214
[_][]const []const u8{ runtests_sources, runtests_cxx_sources },
215215
[_]bool{ false, true },
216216
) |name, test_sources, link_cpp| {
217-
var flags: std.ArrayListUnmanaged([]const u8) = .{};
217+
var flags: std.ArrayList([]const u8) = .empty;
218218
if (link_cpp) flags.append(b.allocator, "-std=c++11") catch @panic("OOM");
219219
if (need_short_char_arg) flags.append(b.allocator, "-fshort-wchar") catch @panic("OOM");
220220

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.{
22
.name = .libexpat,
33
.version = "2.7.1-2",
4-
.minimum_zig_version = "0.15.2",
4+
.minimum_zig_version = "0.16.0-dev.3133+5ec8e45f3",
55
.dependencies = .{
66
.libexpat = .{
77
.url = "git+https://github.com/libexpat/libexpat?ref=R_2_7_1#f9a3eeb3e09fbea04b1c451ffc422ab2f1e45744",

0 commit comments

Comments
 (0)