| 12886 | } |
| 12887 | |
| 12888 | bool url::set_pathname(const std::string_view input) { |
| 12889 | if (has_opaque_path) { |
| 12890 | return false; |
| 12891 | } |
| 12892 | path.clear(); |
| 12893 | parse_path(input); |
| 12894 | return true; |
| 12895 | } |
| 12896 | |
| 12897 | bool url::set_protocol(const std::string_view input) { |
| 12898 | std::string view(input); |
no test coverage detected