Skip to content

Commit 87c2b4e

Browse files
committed
Fix #2294
1 parent c795ad1 commit 87c2b4e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

httplib.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9206,7 +9206,8 @@ inline ClientImpl::ClientImpl(const std::string &host, int port,
92069206
const std::string &client_cert_path,
92079207
const std::string &client_key_path)
92089208
: host_(detail::escape_abstract_namespace_unix_domain(host)), port_(port),
9209-
host_and_port_(detail::make_host_and_port_string(host_, port, is_ssl())),
9209+
host_and_port_(
9210+
detail::make_host_and_port_string(host_, port, ClientImpl::is_ssl())),
92109211
client_cert_path_(client_cert_path), client_key_path_(client_key_path) {}
92119212

92129213
inline ClientImpl::~ClientImpl() {

0 commit comments

Comments
 (0)