Build fix.

This commit is contained in:
Vladimir Chebotarev 2020-12-21 10:48:26 +03:00
parent 59fb76e8bc
commit ad6fe2a8b1

View File

@ -164,7 +164,11 @@ namespace
UInt16 proxy_port;
bool is_proxy_https;
bool operator ==(const Key &) const = default;
bool operator ==(const Key & rhs) const
{
return std::tie(target_host, target_port, is_target_https, proxy_host, proxy_port, is_proxy_https)
== std::tie(rhs.target_host, rhs.target_port, rhs.is_target_https, rhs.proxy_host, rhs.proxy_port, rhs.is_proxy_https);
}
};
private: