Fix compiler warning in coral::println

This commit is contained in:
kayomn 2023-03-02 23:58:01 +00:00
parent 398e28d328
commit e9c877956e

View File

@ -245,5 +245,6 @@ export namespace coral {
template<typename... arguments> expected<usize, io_error> println(writer & output, arguments... print_arguments) { template<typename... arguments> expected<usize, io_error> println(writer & output, arguments... print_arguments) {
// TODO: Implement. // TODO: Implement.
return 0;
} }
} }