From 0e26c61499c5116ca11d1bfedc691b56b23a0751 Mon Sep 17 00:00:00 2001 From: Veikka Tuominen Date: Sun, 17 Jul 2022 11:54:13 +0300 Subject: [PATCH] std.fs: remove accidental comptime block --- lib/std/fs.zig | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/std/fs.zig b/lib/std/fs.zig index 1886c9c433..61f79beaf6 100644 --- a/lib/std/fs.zig +++ b/lib/std/fs.zig @@ -2391,12 +2391,6 @@ pub fn openIterableDirAbsoluteW(absolute_path_c: [*:0]const u16, flags: Dir.Open return IterableDir{ .dir = try cwd().openDirW(absolute_path_c, flags, true) }; } -comptime { - _ = openIterableDirAbsolute; - _ = openIterableDirAbsoluteZ; - _ = openIterableDirAbsoluteW; -} - /// Opens a file for reading or writing, without attempting to create a new file, based on an absolute path. /// Call `File.close` to release the resource. /// Asserts that the path is absolute. See `Dir.openFile` for a function that