blob: 0ddfc313167704ff37c5f4495a97fc08647c54d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "common/fs/fs_util.h"
namespace Common::FS {
std::u8string ToU8String(std::string_view utf8_string) {
return std::u8string{utf8_string.begin(), utf8_string.end()};
}
} // namespace Common::FS
|