Skip to content

Commit

Permalink
Revert "fix Issue 13241 - [REG2.067a] writeln no longer flushes stdout"
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Aug 19, 2014
1 parent da32e98 commit 0198a2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/stdio.d
Expand Up @@ -2794,7 +2794,7 @@ void writeln(T...)(T args)
// Specialization for strings - a very frequent case
auto w = .trustedStdout.lockingTextWriter();
w.put(args[0]);
w.put('\n');
w.put("\n");
}
else
{
Expand Down

0 comments on commit 0198a2e

Please sign in to comment.