Skip to content

Commit 32d76f0

Browse files
committed
stage2: remove pub from a private function
1 parent bac4a5c commit 32d76f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Module.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4156,7 +4156,7 @@ pub fn populateBuiltinFile(mod: *Module) !void {
41564156
file.status = .success_zir;
41574157
}
41584158

4159-
pub fn writeBuiltinFile(file: *File, builtin_pkg: *Package) !void {
4159+
fn writeBuiltinFile(file: *File, builtin_pkg: *Package) !void {
41604160
var af = try builtin_pkg.root_src_directory.handle.atomicFile(builtin_pkg.root_src_path, .{});
41614161
defer af.deinit();
41624162
try af.file.writeAll(file.source);

0 commit comments

Comments
 (0)