Переглянути джерело

Updated to work with zig master branch (#2620)

Specifically, std.fs.OpenDirOptions struct no longer has the iterable
flag, now it's a standalone function call std.fs.openIterableDir
pull/2626/head
Jacob Dennis 2 роки тому
committed by GitHub
джерело
коміт
621d6ae856
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: 4AEE18F83AFDEB23
1 змінених файлів з 1 додано та 4 видалено
  1. +1
    -4
      examples/build.zig

+ 1
- 4
examples/build.zig Переглянути файл

@ -7,10 +7,7 @@ fn add_module(comptime module: []const u8, b: *std.build.Builder, target: std.zi
const mode = b.standardReleaseOptions();
const all = b.step(module, "All " ++ module ++ " examples");
const dir = try std.fs.cwd().openDir(
module,
.{ .iterate = true },
);
const dir = try std.fs.cwd().openIterableDir(module, .{});
var iter = dir.iterate();
while (try iter.next()) |entry| {
if (entry.kind != .File) continue;

Завантаження…
Відмінити
Зберегти