diff options
author | Shauren <shauren.trinity@gmail.com> | 2020-07-15 19:33:12 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2020-07-15 19:33:12 +0200 |
commit | 524d16739861d0b2279e2270e319b0c77ec9b03b (patch) | |
tree | 6ef11c719c0f24dd9f14d90ba8045f9a77eaa254 /src/common/Utilities/Util.cpp | |
parent | 1405760f317cfcfed29aca5ab36633863a2d9dc9 (diff) |
Dep: Switch to boost process instead of old standalone version
Diffstat (limited to 'src/common/Utilities/Util.cpp')
-rw-r--r-- | src/common/Utilities/Util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Utilities/Util.cpp b/src/common/Utilities/Util.cpp index 2e5c3a266fe..62629c80d43 100644 --- a/src/common/Utilities/Util.cpp +++ b/src/common/Utilities/Util.cpp @@ -416,7 +416,7 @@ bool Utf8toWStr(const std::string& utf8str, std::wstring& wstr) return true; } -bool WStrToUtf8(wchar_t* wstr, size_t size, std::string& utf8str) +bool WStrToUtf8(wchar_t const* wstr, size_t size, std::string& utf8str) { try { |