Skip to content

Commit

Permalink
more tweaking
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Jan 20, 2025
1 parent cda0718 commit 2c54f3e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/implementation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,14 @@ template result<std::optional<url_pattern_result>>
url_pattern<url_pattern_regex::std_regex_provider>::exec(
const url_pattern_input& input, std::string_view* base_url);

template result<bool> url_pattern<url_pattern_regex::std_regex_provider>::test(
const url_pattern_input& input, std::string_view* base_url);
namespace parser {
template tl::expected<url_pattern<url_pattern_regex::std_regex_provider>,
errors>
parse_url_pattern_impl(std::variant<std::string_view, url_pattern_init> input,
const std::string_view* base_url,
const url_pattern_options* options,
url_pattern_regex::std_regex_provider&& provider);
} // namespace parser
} // namespace ada

0 comments on commit 2c54f3e

Please sign in to comment.