mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-15 01:08:27 +00:00
Fix #1977
This commit is contained in:
parent
26208363ee
commit
7bd316f3d0
1 changed files with 1 additions and 1 deletions
|
@ -2259,7 +2259,7 @@ make_basic_authentication_header(const std::string &username,
|
||||||
namespace detail {
|
namespace detail {
|
||||||
|
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
std::wstring u8string_to_wstring(const char *s) {
|
inline std::wstring u8string_to_wstring(const char *s) {
|
||||||
std::wstring ws;
|
std::wstring ws;
|
||||||
auto len = static_cast<int>(strlen(s));
|
auto len = static_cast<int>(strlen(s));
|
||||||
auto wlen = ::MultiByteToWideChar(CP_UTF8, 0, s, len, nullptr, 0);
|
auto wlen = ::MultiByteToWideChar(CP_UTF8, 0, s, len, nullptr, 0);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue