From 33bab6eb72942997cd1bf76404b915984367eeb1 Mon Sep 17 00:00:00 2001 From: q66 Date: Sun, 12 Feb 2017 22:51:43 +0100 Subject: [PATCH] fix wrong return type --- ostd/stream.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ostd/stream.hh b/ostd/stream.hh index e743029..7d388f1 100644 --- a/ostd/stream.hh +++ b/ostd/stream.hh @@ -91,7 +91,7 @@ struct Stream { } template - bool writeln(T const &v, A const &...args) { + void writeln(T const &v, A const &...args) { write(v); write(args...); if (!putchar('\n')) {