aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBilly O'Neal <bion@microsoft.com>2020-09-11 14:27:41 -0700
committerGitHub <noreply@github.com>2020-09-11 14:27:41 -0700
commit180cae5b6d5a01b426b0082c8b0e5b0304b29011 (patch)
treefdfb6380613f20e5e1c6d2b5f7eba1c4a3e0272f
parent6b97dbfce2159e40d71fb69b1fe05c822c43aa90 (diff)
downloadvcpkg-180cae5b6d5a01b426b0082c8b0e5b0304b29011.tar.gz
vcpkg-180cae5b6d5a01b426b0082c8b0e5b0304b29011.zip
Fix boostrap on VS2019. (#13489)
-rw-r--r--toolsrc/src/vcpkg/base/files.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/vcpkg/base/files.cpp b/toolsrc/src/vcpkg/base/files.cpp
index 3b84ee189..51c6c9c76 100644
--- a/toolsrc/src/vcpkg/base/files.cpp
+++ b/toolsrc/src/vcpkg/base/files.cpp
@@ -482,7 +482,7 @@ namespace vcpkg::Files
std::fstream file_stream(file_path, std::ios_base::in | std::ios_base::binary);
if (file_stream.fail())
{
- Debug::print("Missing path: ", file_path.u8string(), '\n');
+ Debug::print("Missing path: ", fs::u8string(file_path), '\n');
return std::make_error_code(std::errc::no_such_file_or_directory);
}