| 12789 | } |
| 12790 | |
| 12791 | bool url::set_host(const std::string_view input) { |
| 12792 | return set_host_or_hostname<false>(input); |
| 12793 | } |
| 12794 | |
| 12795 | bool url::set_hostname(const std::string_view input) { |
| 12796 | return set_host_or_hostname<true>(input); |
no test coverage detected