Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2772ae9

Browse files
committedJan 20, 2025·
minor fixes so that it will compile (but not link)
1 parent 74f6cc3 commit 2772ae9

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed
 

‎include/ada/implementation.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ bool can_parse(std::string_view input,
5858
* use ada::url_pattern_regex::std_regex_provider
5959
* @return url_pattern instance
6060
*/
61-
template <class regex_provider, class regex_type>
61+
template <class regex_provider = ada::url_pattern_regex::std_regex_provider, class regex_type = std::regex>
6262
requires url_pattern_regex::derived_from_provider<regex_provider, regex_type>
6363
ada_warn_unused tl::expected<url_pattern<regex_provider, regex_type>, errors>
6464
parse_url_pattern(std::variant<std::string_view, url_pattern_init> input,

‎tests/wpt_urlpattern_tests.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ TEST(wpt_urlpattern_tests, basic_tests) {
6060
// https://github.com/web-platform-tests/wpt/blob/0c1d19546fd4873bb9f4147f0bbf868e7b4f91b7/urlpattern/resources/urlpattern-hasregexpgroups-tests.js
6161
TEST(wpt_urlpattern_tests, has_regexp_groups) {
6262
auto create_init = [](std::string_view component, std::string value)
63-
-> ada::url_pattern_init<ada::url_pattern_regex::std_regex_provider,
64-
std::regex> {
63+
-> ada::url_pattern_init {
6564
if (component == "protocol") return {.protocol = value};
6665
if (component == "username") return {.username = value};
6766
if (component == "password") return {.password = value};
@@ -229,7 +228,7 @@ parse_pattern_field(ondemand::array& patterns) {
229228
return std::tuple(*init_str, base_url, options);
230229
}
231230

232-
tl::expected<ada::url_pattern<std::regex>, ada::errors> parse_pattern(
231+
tl::expected<ada::url_pattern<ada::url_pattern_regex::std_regex_provider, std::regex>, ada::errors> parse_pattern(
233232
std::variant<std::string, ada::url_pattern_init, bool>& init_variant,
234233
std::optional<std::string>& base_url,
235234
std::optional<ada::url_pattern_options>& options) {

0 commit comments

Comments
 (0)
Please sign in to comment.