This commit is contained in:
Jack Andersen 2016-06-19 17:36:32 -10:00
commit 7666b51c50
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ static void *memmem(const void *haystack, size_t hlen, const void *needle, size_
return NULL; return NULL;
} }
amuse::SystemString StrToSys(const std::string& str) static amuse::SystemString StrToSys(const std::string& str)
{ {
std::wstring ret; std::wstring ret;
int len = MultiByteToWideChar(CP_UTF8, 0, str.c_str(), str.size(), nullptr, 0); int len = MultiByteToWideChar(CP_UTF8, 0, str.c_str(), str.size(), nullptr, 0);
@ -45,7 +45,7 @@ amuse::SystemString StrToSys(const std::string& str)
} }
#else #else
amuse::SystemString StrToSys(const std::string& str) static amuse::SystemString StrToSys(const std::string& str)
{ {
return str; return str;
} }