diff options
| author | Ryan Liptak <squeek502@hotmail.com> | 2020-04-03 00:46:16 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-04-03 12:12:23 -0400 |
| commit | 08a9ab4d8c7f1baeb6169088284c06fb2b9707ce (patch) | |
| tree | 980667d5a37c6eba7c445963afb6caa2f893ea84 /tools | |
| parent | 0dbf8aaab83d7387568d6387c6cbd263e04c7397 (diff) | |
| download | zig-08a9ab4d8c7f1baeb6169088284c06fb2b9707ce.tar.gz zig-08a9ab4d8c7f1baeb6169088284c06fb2b9707ce.zip | |
Update all remaining uses of &outStream().stream
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/merge_anal_dumps.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/merge_anal_dumps.zig b/tools/merge_anal_dumps.zig index 3399c15fd7..10c401ec38 100644 --- a/tools/merge_anal_dumps.zig +++ b/tools/merge_anal_dumps.zig @@ -23,7 +23,7 @@ pub fn main() anyerror!void { } const stdout = try std.io.getStdOut(); - try dump.render(&stdout.outStream().stream); + try dump.render(stdout.outStream()); } /// AST source node |
