Skip to content

Commit 0e26c61

Browse files
committed
std.fs: remove accidental comptime block
1 parent fcaeca5 commit 0e26c61

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

lib/std/fs.zig

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2391,12 +2391,6 @@ pub fn openIterableDirAbsoluteW(absolute_path_c: [*:0]const u16, flags: Dir.Open
23912391
return IterableDir{ .dir = try cwd().openDirW(absolute_path_c, flags, true) };
23922392
}
23932393

2394-
comptime {
2395-
_ = openIterableDirAbsolute;
2396-
_ = openIterableDirAbsoluteZ;
2397-
_ = openIterableDirAbsoluteW;
2398-
}
2399-
24002394
/// Opens a file for reading or writing, without attempting to create a new file, based on an absolute path.
24012395
/// Call `File.close` to release the resource.
24022396
/// Asserts that the path is absolute. See `Dir.openFile` for a function that

0 commit comments

Comments
 (0)