From b26b52fd2dc9631542126079791455348bf38447 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 2 Aug 2024 23:28:33 -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 286e84e4..5f7e758a 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.data(), abs_path.data(), MAX_PATH); + abs_path = _fullpath(temp.data(), abs_path.c_str(), MAX_PATH); } #else // !defined(_WIN32) abs_path = resolve(finalize(abs_path));