mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
StringUtil: Move CommandLineToUtf8Argv() into Common namespace
This commit is contained in:
parent
d368c989e7
commit
954afd81ec
6 changed files with 10 additions and 10 deletions
|
@ -656,6 +656,8 @@ std::string PathToString(const std::filesystem::path& path)
|
|||
#endif
|
||||
}
|
||||
|
||||
namespace Common
|
||||
{
|
||||
#ifdef _WIN32
|
||||
std::vector<std::string> CommandLineToUtf8Argv(const wchar_t* command_line)
|
||||
{
|
||||
|
@ -675,8 +677,6 @@ std::vector<std::string> CommandLineToUtf8Argv(const wchar_t* command_line)
|
|||
}
|
||||
#endif
|
||||
|
||||
namespace Common
|
||||
{
|
||||
std::string GetEscapedHtml(std::string html)
|
||||
{
|
||||
static constexpr std::array<std::array<const char*, 2>, 5> replacements{{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue