Skip to content

Commit

Permalink
LibWeb: Make is_identifier always return false the simple way
Browse files Browse the repository at this point in the history
  • Loading branch information
shlyakpavel authored and awesomekling committed Dec 22, 2024
1 parent d6466da commit b6561f5
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@

namespace Web::HTML {

bool SyntaxHighlighter::is_identifier(u64 token) const
bool SyntaxHighlighter::is_identifier(u64) const
{
if (!token)
return false;
return false;
}

Expand Down

0 comments on commit b6561f5

Please sign in to comment.