From e9c877956ee39945f992f9937185db1b1766e7f6 Mon Sep 17 00:00:00 2001 From: kayomn Date: Thu, 2 Mar 2023 23:58:01 +0000 Subject: [PATCH] Fix compiler warning in coral::println --- source/coral/io.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/coral/io.cpp b/source/coral/io.cpp index 3e361a1..1191720 100755 --- a/source/coral/io.cpp +++ b/source/coral/io.cpp @@ -245,5 +245,6 @@ export namespace coral { template expected println(writer & output, arguments... print_arguments) { // TODO: Implement. + return 0; } }