StringUtil: Move CommandLineToUtf8Argv() into Common namespace

This commit is contained in:
Lioncash
2023-05-16 14:23:21 -04:00
parent d368c989e7
commit 954afd81ec
6 changed files with 10 additions and 10 deletions

View File

@ -62,7 +62,7 @@ int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine
return 0;
}
std::vector<std::string> args = CommandLineToUtf8Argv(pCmdLine);
std::vector<std::string> args = Common::CommandLineToUtf8Argv(pCmdLine);
return RunUpdater(args) ? 0 : 1;
}