fix wrong return type

master
Daniel Kolesa 2017-02-12 22:51:43 +01:00
parent 667b2d50ea
commit 33bab6eb72
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ struct Stream {
}
template<typename T, typename ...A>
bool writeln(T const &v, A const &...args) {
void writeln(T const &v, A const &...args) {
write(v);
write(args...);
if (!putchar('\n')) {