LibWeb/CSS: Make CSS Parser non-copyable/movable

We never actually need to do this, and doing so was complicated because
of the token stream, so just disable it altogether.
This commit is contained in:
Sam Atkins 2025-02-04 16:31:30 +00:00
commit 4d0537ee80
Notes: github-actions[bot] 2025-02-06 16:48:56 +00:00
2 changed files with 0 additions and 17 deletions

View file

@ -189,11 +189,6 @@ public:
}
}
void copy_state(Badge<Parser>, TokenStream<T> const& other)
{
m_index = other.m_index;
}
private:
// https://drafts.csswg.org/css-syntax/#token-stream-tokens
Span<T const> m_tokens;