Просмотр исходного кода

Merge pull request #12724 from merryhime/fs-u8str-overloads

fs/file: Explicitly convert std::u8string to std::filesystem::path
liamwhite 2 лет назад
Родитель
Сommit
61ce0088ae
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/common/fs/file.h

+ 1 - 1
src/common/fs/file.h

@@ -37,7 +37,7 @@ void OpenFileStream(FileStream& file_stream, const std::filesystem::path& path,
 template <typename FileStream, typename Path>
 void OpenFileStream(FileStream& file_stream, const Path& path, std::ios_base::openmode open_mode) {
     if constexpr (IsChar<typename Path::value_type>) {
-        file_stream.open(ToU8String(path), open_mode);
+        file_stream.open(std::filesystem::path{ToU8String(path)}, open_mode);
     } else {
         file_stream.open(std::filesystem::path{path}, open_mode);
     }