Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/Core/Common/StringUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ std::u16string UTF8ToUTF16(std::string_view input)
// This is a replacement for path::u8path, which is deprecated starting with C++20.
std::filesystem::path StringToPath(std::string_view path)
{
#ifdef _MSC_VER
#ifdef _WIN32
return std::filesystem::path(UTF8ToWString(path));
#else
return std::filesystem::path(path);
Expand Down
Loading