authorgravatar for michael.dusan@gmail.comMichael Dusan <michael.dusan@gmail.com> 2021-05-23 19:40:31-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-05-23 19:45:05-04:00
logb3e483224020f2b1fa2eff554946d2ffa216004b
treea7bfad1773ecb3c97b2e29df3e89aa8b9873cd0d
parentb8f85a805bf61ae11d6ee2bd6d8356fbc98ee3ba

housekeeping: remove `pub` from ccPrintFileName()

- this was inadvertently made public while iterating on #8730

1 files changed, 1 insertions(+), 1 deletions(-)

src/libc_installation.zig+1-1
...@@ -523,7 +523,7 @@ pub const CCPrintFileNameOptions = struct {...@@ -523,7 +523,7 @@ pub const CCPrintFileNameOptions = struct {
523};523};
524524
525/// caller owns returned memory525/// caller owns returned memory
526pub fn ccPrintFileName(args: CCPrintFileNameOptions) ![:0]u8 {526fn ccPrintFileName(args: CCPrintFileNameOptions) ![:0]u8 {
527 const allocator = args.allocator;527 const allocator = args.allocator;
528528
529 const cc_exe = std.os.getenvZ("CC") orelse default_cc_exe;529 const cc_exe = std.os.getenvZ("CC") orelse default_cc_exe;