Everywhere: Change west consts caught by clang-format-21 to east consts

This commit is contained in:
Luke Wilde 2025-08-29 13:02:52 +01:00 committed by Tim Ledbetter
parent 829437c11d
commit b17783bb10
Notes: github-actions[bot] 2025-08-29 17:20:11 +00:00
49 changed files with 80 additions and 80 deletions

View file

@ -58,7 +58,7 @@ SameSite same_site_from_string(StringView same_site_mode)
}
// https://www.ietf.org/archive/id/draft-ietf-httpbis-rfc6265bis-15.html#section-5.1.2
Optional<String> canonicalize_domain(const URL::URL& url)
Optional<String> canonicalize_domain(URL::URL const& url)
{
if (!url.host().has_value())
return {};

View file

@ -48,7 +48,7 @@ struct WEB_API Cookie {
WEB_API StringView same_site_to_string(SameSite same_site_mode);
WEB_API SameSite same_site_from_string(StringView same_site_mode);
WEB_API Optional<String> canonicalize_domain(const URL::URL& url);
WEB_API Optional<String> canonicalize_domain(URL::URL const& url);
WEB_API bool path_matches(StringView request_path, StringView cookie_path);
}