From bf7ba3991f10f3946fe275ae86b5c8c00fbcc4f4 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 2 Aug 2024 23:11:38 -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 01a2d70c..286e84e4 100644 --- a/support/3rd_party/src/utils/path.cpp +++ b/support/3rd_party/src/utils/path.cpp @@ -72,7 +72,7 @@ auto absolute(std::string_view path) -> std::string { if (not abs_path.empty() && ::PathIsRelative(abs_path.c_str())) { std::string temp; temp.resize(MAX_PATH + 1); - abs_path = _fullpath(temp.c_str(), abs_path.data(), MAX_PATH); + abs_path = _fullpath(temp.data(), abs_path.data(), MAX_PATH); } #else // !defined(_WIN32) abs_path = resolve(finalize(abs_path));