Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
lint
  • Loading branch information
lemire authored and anonrig committed Jan 22, 2025
commit 1b44d8f9c98ff5d805944d99357e3fb3451e5b0d
2 changes: 1 addition & 1 deletion src/url_pattern_regex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ std::vector<std::string> std_regex_provider::regex_search(

bool std_regex_provider::regex_match(std::string_view input,
const std::regex& pattern) {
return std::regex_match(input.begin(), input.end(), pattern);
return std::regex_match(input.begin(), input.end(), pattern);
}

} // namespace ada::url_pattern_regex