Update all remaining uses of &outStream().stream

This commit is contained in:
Ryan Liptak
2020-04-03 00:46:16 -07:00
committed by Andrew Kelley
parent 0dbf8aaab8
commit 08a9ab4d8c
4 changed files with 4 additions and 6 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ const builtin = @import("builtin");
const std = @import("std");
pub fn main() !void {
const stdout = &std.io.getStdOut().outStream().stream;
const stdout = std.io.getStdOut().outStream();
const args = try std.process.argsAlloc(std.heap.page_allocator);