| 17256 | } |
| 17257 | |
| 17258 | bool ada_set_pathname(ada_url result, const char* input, |
| 17259 | size_t length) noexcept { |
| 17260 | ada::result<ada::url_aggregator>& r = get_instance(result); |
| 17261 | if (!r) { |
| 17262 | return false; |
| 17263 | } |
| 17264 | return r->set_pathname(std::string_view(input, length)); |
| 17265 | } |
| 17266 | |
| 17267 | /** |
| 17268 | * Update the search/query of the URL. |
nothing calls this directly
no test coverage detected