From 95b88b6ac6f3cb515c9e380f711f3e1c298a8352 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 2 Aug 2024 12:11:45 -0500 Subject: [PATCH] updated build system --- support/3rd_party/src/utils/path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/3rd_party/src/utils/path.cpp b/support/3rd_party/src/utils/path.cpp index dc0c325b..0785043f 100644 --- a/support/3rd_party/src/utils/path.cpp +++ b/support/3rd_party/src/utils/path.cpp @@ -184,7 +184,7 @@ auto strip_to_file_name(std::string path) -> std::string { } auto strip_to_file_name(std::wstring path) -> std::wstring { - return utils::string::to_utf8( + return utils::string::from_utf8( strip_to_file_name(utils::string::to_utf8(path))); }