Revert buffered in stream - it breaks inputs for some strange reason

This commit is contained in:
SuperAuguste 2020-05-18 09:31:17 -04:00
parent 847414d9ca
commit 66908bd1a9

View File

@ -616,9 +616,7 @@ pub fn main() anyerror!void {
}
// Init global vars
var buffered_stdin = std.io.bufferedInStream(std.io.getStdIn().inStream());
const in_stream = buffered_stdin.inStream();
const in_stream = std.io.getStdIn().inStream();
stdout = std.io.bufferedOutStream(std.io.getStdOut().outStream());
// Read the configuration, if any.