mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:07:44 +00:00
AK: Fix 'constexpr' attribute on non-constexpr function
is_url_code_point invokes StringView::contains, which never was and cannot become constexpr.
This commit is contained in:
parent
ff8f3814cc
commit
dc71e1e264
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ namespace AK {
|
|||
// NOTE: This is similar to the LibC macro EOF = -1.
|
||||
constexpr u32 end_of_file = 0xFFFFFFFF;
|
||||
|
||||
constexpr bool is_url_code_point(u32 code_point)
|
||||
static bool is_url_code_point(u32 code_point)
|
||||
{
|
||||
// FIXME: [...] and code points in the range U+00A0 to U+10FFFD, inclusive, excluding surrogates and noncharacters.
|
||||
return is_ascii_alphanumeric(code_point) || code_point >= 0xA0 || "!$&'()*+,-./:;=?@_~"sv.contains(code_point);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue