From b109396024f164706121d14a7747838e6b21b0fa Mon Sep 17 00:00:00 2001 From: miere43 Date: Fri, 29 Oct 2021 23:10:26 +0300 Subject: [PATCH] Pass "components" argument as StringView[] in Path.InternalCombine --- BeefLibs/corlib/src/IO/Path.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeefLibs/corlib/src/IO/Path.bf b/BeefLibs/corlib/src/IO/Path.bf index 0b9b7b4e..f8c40e53 100644 --- a/BeefLibs/corlib/src/IO/Path.bf +++ b/BeefLibs/corlib/src/IO/Path.bf @@ -297,7 +297,7 @@ namespace System.IO return .Ok; } - public static void InternalCombine(String target, params String[] components) + public static void InternalCombine(String target, params StringView[] components) { for (var component in components) {