diff options
author | Shauren <shauren.trinity@gmail.com> | 2020-07-15 19:33:12 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-01-23 20:39:15 +0100 |
commit | 2b312c7bd23710ede145d2ec2ccd04ea4f1fc5bf (patch) | |
tree | eef9d410330eed25f6bd02152287d98217c26625 /src/common/Utilities/Util.h | |
parent | 596bf2b77218e6b959c1bf7de848c6f09d5a91f0 (diff) |
Dep: Switch to boost process instead of old standalone version
(cherry picked from commit 524d16739861d0b2279e2270e319b0c77ec9b03b)
Diffstat (limited to 'src/common/Utilities/Util.h')
-rw-r--r-- | src/common/Utilities/Util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Utilities/Util.h b/src/common/Utilities/Util.h index c61036d13ef..f34b6d6ad96 100644 --- a/src/common/Utilities/Util.h +++ b/src/common/Utilities/Util.h @@ -122,7 +122,7 @@ inline bool Utf8toWStr(const std::string& utf8str, wchar_t* wstr, size_t& wsize) TC_COMMON_API bool WStrToUtf8(std::wstring const& wstr, std::string& utf8str); // size==real string size -TC_COMMON_API bool WStrToUtf8(wchar_t* wstr, size_t size, std::string& utf8str); +TC_COMMON_API bool WStrToUtf8(wchar_t const* wstr, size_t size, std::string& utf8str); // set string to "" if invalid utf8 sequence TC_COMMON_API size_t utf8length(std::string& utf8str); |