resolved_endpoints(std::move(other.resolved_endpoints)),
key(std::move(other.key)),
self_zone_group(std::move(other.self_zone_group)),
- remote_id(std::move(other.remote_id))
+ remote_id(std::move(other.remote_id)),
+ api_name(std::move(other.api_name)),
+ host_style(other.host_style)
{
}
key = std::move(other.key);
self_zone_group = std::move(other.self_zone_group);
remote_id = std::move(other.remote_id);
+ api_name = std::move(other.api_name);
+ host_style = other.host_style;
return *this;
}