From 30ae7eef61cb0cbe0dbde6658667b01402a22625 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Thu, 8 Oct 2020 12:48:24 -0700 Subject: [PATCH] Ambiguous call fix --- BeefLibs/corlib/src/Diagnostics/Debug.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeefLibs/corlib/src/Diagnostics/Debug.bf b/BeefLibs/corlib/src/Diagnostics/Debug.bf index aa204426..713e3e8a 100644 --- a/BeefLibs/corlib/src/Diagnostics/Debug.bf +++ b/BeefLibs/corlib/src/Diagnostics/Debug.bf @@ -58,7 +58,7 @@ namespace System.Diagnostics public static void WriteLine() { - Write("\n", 1); + Write((char8*)"\n", 1); } public static void WriteLine(StringView line)